From a81f4bcf15f16015ae1973e35cfe11eb30c62d44 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 18 Apr 2018 17:45:02 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E5=BE=AE?= =?UTF-8?q?=E4=BF=A1=E5=B0=8F=E7=A8=8B=E5=BA=8F=E8=A7=A3=E6=9E=90=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeMini/Crypt.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/WeMini/Crypt.php b/WeMini/Crypt.php index 46fbad0..ece1b01 100644 --- a/WeMini/Crypt.php +++ b/WeMini/Crypt.php @@ -16,6 +16,8 @@ namespace WeMini; use WeChat\Contracts\BasicWeChat; +require_once __DIR__ . DIRECTORY_SEPARATOR . 'crypt' . DIRECTORY_SEPARATOR . 'wxBizDataCrypt.php'; + /** * 数据加密处理 * Class Crypt @@ -27,13 +29,12 @@ class Crypt extends BasicWeChat /** * 数据签名校验 * @param string $iv - * @param string $encryptedData * @param string $sessionKey + * @param string $encryptedData * @return bool */ - public function decode($iv, $encryptedData, $sessionKey) + public function decode($iv, $sessionKey, $encryptedData) { - require_once __DIR__ . DIRECTORY_SEPARATOR . 'wxBizDataCrypt.php'; $pc = new \WXBizDataCrypt($this->config->get('appid'), $sessionKey); $errCode = $pc->decryptData($encryptedData, $iv, $data); if ($errCode == 0) {