溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

thinkphp微信開發(fā)之消息加密解密的示例分析

發(fā)布時間:2021-09-05 09:36:57 來源:億速云 閱讀:147 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹thinkphp微信開發(fā)之消息加密解密的示例分析,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

使用thinkphp官方的WeChat包,使用不同模式可以成功,但是安全模式就是不行,現(xiàn)將分析解決結(jié)果做下記錄。

分析問題:

          解密微信服務(wù)器消息老是不成功,下載下微信公眾平臺官方給出的解密文件和WechatCrypt.class.php進(jìn)行比對發(fā)現(xiàn)也沒有問題。用file_put_contents函數(shù)保存下解密后的文件進(jìn)行分析。發(fā)現(xiàn)官方包解密的xml不是標(biāo)準(zhǔn)的xml格式,所以simplexml_load_string函數(shù)無法處理。

/**
  * 對密文進(jìn)行解密
  * @param string $encrypt 密文
  * @return string   明文
  */
 public function decrypt($encrypt){
  //BASE64解碼
  $encrypt = base64_decode($encrypt);

  //打開加密算法模塊
  $td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');

  //初始化加密算法模塊
  mcrypt_generic_init($td, $this->cyptKey, substr($this->cyptKey, 0, 16));

  //執(zhí)行解密
  $decrypt = mdecrypt_generic($td, $encrypt);
  
  //去除PKCS7補(bǔ)位
  $decrypt = self::PKCS7Decode($decrypt, mcrypt_enc_get_key_size($td));

  //關(guān)閉加密算法模塊
  mcrypt_generic_deinit($td);
  mcrypt_module_close($td);

  if(strlen($decrypt) < 16){
   throw new \Exception("非法密文字符串!");
  }

  //去除隨機(jī)字符串
  $decrypt = substr($decrypt, 16);

  //獲取網(wǎng)絡(luò)字節(jié)序
  $size = unpack("N", substr($decrypt, 0, 4));
  $size = $size[1];

  //APP_ID
  $appid = substr($decrypt, $size + 4);

  //驗證APP_ID
  if($appid !== $this->appId){
   throw new \Exception("非法APP_ID!");
  }
  
  //明文內(nèi)容
  $text = substr($decrypt, 4, $size);
  return $text;
 }

 /**
  * PKCS7填充字符
  * @param string $text 被填充字符
  * @param integer $size Block長度
  */
 private static function PKCS7Encode($text, $size){
  //字符串長度
  $str_size = strlen($text);

  //填充長度
  $pad_size = $size - ($str_size % $size);
  $pad_size = $pad_size ? : $size;
  
  //填充的字符
  $pad_chr = chr($pad_size);

  //執(zhí)行填充
  $text = str_pad($text, $str_size + $pad_size, $pad_chr, STR_PAD_RIGHT);

  return $text;
 }

 /**
  * 刪除PKCS7填充的字符
  * @param string $text 已填充的字符
  * @param integer $size Block長度
  */
 private static function PKCS7Decode($text, $size){
  //獲取補(bǔ)位字符
  $pad_str = ord(substr($text, -1));

  if ($pad_str < 1 || $pad_str > $size) {
   $pad_str= 0;
  } 
   return substr($text, 0, strlen($text) - $pad_str);
  
 }

解決方法:
           輸出的xml文件是這樣的

<xml>
<ToUserName><![CDATA[gh_249aeb986d99]]><\/ToUserName>\n
<FromUserName><![CDATA[oopVmxHZaeQkDPsRcbpwXKkH-J2Q]]><\/FromUserName>\n
<CreateTime>1448944621<\/CreateTime>\n
<MsgType><![CDATA[text]]><\/MsgType>\n
<Content><![CDATA[\u7ecf\u7406]]><\/Content>\n
<MsgId>6223169761311044588<\/MsgId>\n
<\/xml>

       所以需要進(jìn)行處理才能讓simplexml_load_string處理

在輸出的明文內(nèi)容后面加上

//明文內(nèi)容
$text = substr($decrypt, 4, $size);
 //去掉多余的內(nèi)容
$text=str_replace('<\/','</', $text);  
 $text=str_replace('>\n','>', $text);
 return $text;

以上是“thinkphp微信開發(fā)之消息加密解密的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI