小程序 · 2024年5月9日

分享一篇微信开发之数据解密的实例教程

最近在用thinkphp框架写微信小程序的服务端,可能真的是处女座的缘故,从官方下载了一个php的微信解密demo,明明能整合成一个类也没多少代码的,非要分几个类来写,考虑到thinkphp 5.0的框架对于扩展的类引用路劲看着太蛋疼,所以就整合成了一个类,方便调用,有需要的朋友可以download。

百度盘下载地址:
pan.baidu.com/s/1kURMQ2b

<?php /**
 * 对微信小程序用户加密数据的解密示例代码.
 *
 * @copyright Copyright (c) 1998-2014 Tencent Inc.
 */

class WXBizDataCrypt
{
    private $appid;
    private $sessionKey;
    private $blockSize = 16;

    private $OKs = 0;
    private $IllegalAesKey = -41001;
    private $IllegalIv = -41002;
    private $IllegalBuffer = -41003;
    private $DecodeBase64Error = -41004;

    /**
     * 检验数据的真实性,并且获取解密后的明文.
     * @param $encryptedData string 加密的用户数据
     * @param $iv string 与用户数据一同返回的初始向量
     * @param $data string 解密后的原文
     *
     * @return int 成功0,失败返回对应的错误码
     */
    public function decryptData($appid,$sessionKey,$encryptedData, $iv, &$data )
    {
        $this->sessionKey = $sessionKey;
        $this-&gt;appid = $appid;

        if (strlen($this-&gt;sessionKey) != 24) {
            return $this-&gt;IllegalAesKey;
        }
        $aesKey=base64_decode($this-&gt;sessionKey);

        if (strlen($iv) != 24) {
            return $this-&gt;IllegalIv;
        }
        $aesIV=base64_decode($iv);

        $aesCipher=base64_decode($encryptedData);

        $result = $this-&gt;decrypt($aesKey,$aesCipher,$aesIV);

        if ($result[0] != 0) {
            return $result[0];
        }

        $dataObj=json_decode( $result[1] );

        if( $dataObj  == NULL )
        {
            return $this-&gt;IllegalBuffer;
        }
        if( $dataObj-&gt;watermark-&gt;appid != $this-&gt;appid )
        {
            return $this-&gt;IllegalBuffer;
        }
        $data = $result[1];
        return $this-&gt;OKs;
    }

    /**
     * 对密文进行解密
     * @param string $aesCipher 需要解密的密文
     * @param string $aesIV 解密的初始向量
     * @return string 解密得到的明文
     */
    private function decrypt($key, $aesCipher, $aesIV )
    {
        try {

            $module = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');

            mcrypt_generic_init($module, $key, $aesIV);

            //解密
            $decrypted = mdecrypt_generic($module, $aesCipher);
            mcrypt_generic_deinit($module);
            mcrypt_module_close($module);
        } catch (Exception $e) {
            return array($this-&gt;IllegalBuffer, null);
        }


        try {
            //去除补位字符
            $result = $this-&gt;decode($decrypted);

        } catch (Exception $e) {
            //print $e;
            return array($this-&gt;IllegalBuffer, null);
        }
        return array(0, $result);
    }

    /**
     * 对需要加密的明文进行填充补位
     * @param $text 需要进行填充补位操作的明文
     * @return 补齐明文字符串
     */
    private function encode( $text )
    {
        $block_size = $this-&gt;blockSize;
        $text_length = strlen( $text );
        //计算需要填充的位数
        $amount_to_pad = $this-&gt;blockSize - ( $text_length % $this-&gt;blockSize );
        if ( $amount_to_pad == 0 ) {
            $amount_to_pad = $this-&gt;blockSize;
        }
        //获得补位所用的字符
        $pad_chr = chr( $amount_to_pad );
        $tmp = "";
        for ( $index = 0; $index  32) {
            $pad = 0;
        }
        return substr($text, 0, (strlen($text) - $pad));
    }

}

登录后复制

有需要的自己下,ps:对微信登录授权流程有迷惑的可以留言咨询。

【相关推荐】

1.

2. 

3. 

以上就是分享一篇微信开发之数据解密的实例教程的详细内容,更多请关注GTHOST其它相关文章!