这篇文章主要为大家详细介绍了PHP 使用DES加密、解密的简单示例,具有一定的参考价值,可以用来参考一下。
对PHP使用DES进行加密和解密代码感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* 使用DES进行加密和解密代码
*
* @param
* @arrange 五一二笔记网: www.q1010.com
**/
//$input - stuff to decrypt
//$key - the secret key to use
function do_mencrypt($input, $key)
{
$input = str_replace(""n", "", $input);
$input = str_replace(""t", "", $input);
$input = str_replace(""r", "", $input);
$key = substr(md5($key), 0, 24);
$td = mcrypt_module_open('tripledes', '', 'ecb', '');
$iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
mcrypt_generic_init($td, $key, $iv);
$encrypted_data = mcrypt_generic($td, $input);
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
return trim(chop(base64_encode($encrypted_data)));
}
//$input - stuff to decrypt
//$key - the secret key to use
function do_mdecrypt($input, $key)
{
$input = str_replace(""n", "", $input);
$input = str_replace(""t", "", $input);
$input = str_replace(""r", "", $input);
$input = trim(chop(base64_decode($input)));
$td = mcrypt_module_open('tripledes', '', 'ecb', '');
$key = substr(md5($key), 0, 24);
$iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
mcrypt_generic_init($td, $key, $iv);
$decrypted_data = mdecrypt_generic($td, $input);
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
return trim(chop($decrypted_data));
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/745-0.html
注:关于PHP 使用DES加密、解密的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:DES
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。