欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PHP实现DES加密、解密

程序员文章站 2022-03-12 19:40:53
...
    /**
     * des 加密
     * str 需要加密的账号
     * key 加密秘钥
     */
    function encryptStr($str, $key, $toBase64 = true){
        $block = mcrypt_get_block_size('des', 'ecb');
        $pad = $block - (strlen($str) % $block);
        $str .= str_repeat(chr($pad), $pad);
        $enc_str = mcrypt_encrypt(MCRYPT_DES, $key, $str, MCRYPT_MODE_ECB);
        return (true == $toBase64) ? base64_encode($enc_str) : $enc_str;
    }
    /**des解密
     * @param $str
     * @param $key
     * @return mixed
     */
    function decryptStr($str, $key){
        $str = base64_decode($str);
        $str = mcrypt_decrypt(MCRYPT_DES, $key, $str, MCRYPT_MODE_ECB);
        $block = mcrypt_get_block_size('des', 'ecb');
        $pad = ord($str[($len = strlen($str)) - 1]);
        $res = urldecode(substr($str, 0, strlen($str) - $pad));
        return json_decode(urldecode($res),true);

    }

 

相关标签: php