mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
[更新]修改微信小程序解析支持
This commit is contained in:
parent
bb07da202b
commit
a81f4bcf15
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user