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中使用DES加密解密
推荐阅读
-
带密匙的php加密解密示例分享
-
纯php实现DES以及TripleDES加密算法
-
PHP下SSL加密解密、验证、签名方法技巧
-
我也分享一个PHP加密解密的类
-
PHP 加密/解密函数 dencrypt(动态密文,带压缩功能,支持中文)_php技巧
-
php 实现php代码的加密解密_PHP教程
-
PHP实现加密的几种方式介绍,php实现加密几种
-
PHP解密Unicode及Escape加密字符串,unicodeescape_PHP教程
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open() 如何解决,mcryptmoduleopen
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open() 如何解决,mcryptmoduleopen