...
|
...
|
@@ -44,16 +44,17 @@ class WXBizDataCrypt |
|
|
$result=openssl_decrypt( $aesCipher, "AES-128-CBC", $aesKey, 1, $aesIV);
|
|
|
|
|
|
$dataObj=json_decode( $result );
|
|
|
print_r($dataObj->watermark->appid);
|
|
|
print_r($this->appid);
|
|
|
print_r(123123);
|
|
|
return;
|
|
|
if( $dataObj == NULL )
|
|
|
{
|
|
|
return ErrorCode::$IllegalBuffer;
|
|
|
}
|
|
|
if( $dataObj->watermark->appid != $this->appid )
|
|
|
{
|
|
|
print_r($dataObj->watermark->appid);
|
|
|
print_r($this->appid);
|
|
|
print_r(123123);
|
|
|
return;
|
|
|
|
|
|
return ErrorCode::$IllegalBuffer;
|
|
|
}
|
|
|
$data = $result;
|
...
|
...
|
|