作者 郭文星

13

... ... @@ -41,12 +41,11 @@ class WXBizDataCrypt
$aesCipher=base64_decode($encryptedData);
$result=openssl_decrypt( $aesCipher, "AES-128-CBC", $aesKey, 1, $aesIV);
$result=openssl_decrypt($aesCipher, "AES-128-CBC", $aesKey, 1, $aesIV);
$dataObj=json_decode($result);
print_r($dataObj);
print_r($aesCipher);
print_r("=======");
print_r($this->appid);
return;
if( $dataObj == NULL )
... ...