普通hash函数如md5、sha1、base64等都是不可逆函数。虽然我们利用PHP可以利用这些函数写出可逆函数来。但是跨语言时这类可逆函数非常难搞定。所以这时尽量使用AES DES RC4 Rabbit TripleDes这些方法。
/**
* 加密
* @param string $string 要加密或解密的字符串
* @param string $operation 加密 '' 解密 DECODE
* @param string $key 密钥,加密解密时保持一致
* @param int $expiry 有效时长,单位:秒
* @return string
*/
function encrypt_code($string, $expiry = 0, $key = 'abc12345') {
$ckey_length = 7;
$key = md5($key ? $key : UC_KEY); //加密解密时这个是不变的
$keya = md5(substr($key, 0, 16)); //加密解密时这个是不变的
$keyb = md5(substr($key, 16, 16)); //加密解密时这个是不变的
$keyc = $ckey_length ? substr(md5(microtime()), -$ckey_length) : '';
$cryptkey = $keya . md5($keya . $keyc); //64
$key_length = strlen($cryptkey); //64
$string =sprintf('%010d', $expiry ? $expiry + time() : 0) . substr(md5($string . $keyb), 0, 16) . $string;
$string_length = strlen($string);
$result = '';
$box = range(0, 255);
$rndkey = array();
for ($i = 0; $i <= 255; $i++) { //字母表 64位后重复 数列 范围为48~122
$rndkey[$i] = ord($cryptkey[$i % $key_length]);
}
for ($j = $i = 0; $i < 256; $i++) { //这里是一个打乱算法
$j = ($j + $box[$i] + $rndkey[$i]) % 256;
$tmp = $box[$i];
$box[$i] = $box[$j];
$box[$j] = $tmp;
}
for ($a = $j = $i = 0; $i < $string_length; $i++) {
$result .= chr(ord($string[$i]) ^ ($box[$i]));
}
$str = $keyc . str_replace('=', '', urlsafe_b64encode($result));
// $str =htmlentities($str, ENT_QUOTES, "UTF-8"); // curl 访问出错
return $str ;
}
/**
* 解密
* @param string $string 要加密或解密的字符串
* @param string $operation 加密 '' 解密 DECODE
* @param string $key 密钥,加密解密时保持一致
* @param int $expiry 有效时长,单位:秒
* @return string
*/
function encrypt_decode($string, $expiry = 0,$key = 'abc12345') {
// $string = html_entity_decode($string, ENT_QUOTES, "UTF-8") ; //curl 访问出错
$ckey_length = 7;
$key = md5($key ? $key : UC_KEY); //加密解密时这个是不变的
$keya = md5(substr($key, 0, 16)); //加密解密时这个是不变的
$keyb = md5(substr($key, 16, 16)); //加密解密时这个是不变的
$keyc = $ckey_length ? substr($string, 0, $ckey_length) : '';
$cryptkey = $keya . md5($keya . $keyc); //64
$key_length = strlen($cryptkey); //64
$string = urlsafe_b64decode(substr($string, $ckey_length)) ;
$string_length = strlen($string);
$result = '';
$box = range(0, 255);
$rndkey = array();
for ($i = 0; $i <= 255; $i++) { //字母表 64位后重复 数列 范围为48~122
$rndkey[$i] = ord($cryptkey[$i % $key_length]);
}
for ($j = $i = 0; $i < 256; $i++) { //这里是一个打乱算法
$j = ($j + $box[$i] + $rndkey[$i]) % 256;
$tmp = $box[$i];
$box[$i] = $box[$j];
$box[$j] = $tmp;
}
for ($a = $j = $i = 0; $i < $string_length; $i++) {
$result .= chr(ord($string[$i]) ^ ($box[$i]));
}
if ((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26) . $keyb), 0, 16)) {
return substr($result, 26);
} else {
return false;
}
}
//加密函数
function lock_url($txt,$key='www.zhuoyuexiazai.com'){
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-=+";
$nh = rand(0,64);
$ch = $chars[$nh];
$mdKey = md5($key.$ch);
$mdKey = substr($mdKey,$nh%8, $nh%8+7);
$txt = base64_encode($txt);
$tmp = '';
$i=0;$j=0;$k = 0;
for ($i=0; $i
299 ? gzcompress($result) : $result)) : substr($result, 20, -20);
}
?>
";
/**
*解密函数
*$input 要被解密的字符串
*$key 密钥
*/
$input1 = do_mencrypt($input, $key);
function do_mdecrypt($input1, $key)
{
$input1 = base64_decode(trim($input1));
$td = mcrypt_module_open('des', '', 'ecb', '');
//$key = substr(md5($key), 0, 4);
$iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
mcrypt_generic_init($td, $key, $iv);
$decrypted_data = mdecrypt_generic($td, $input1);
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
return trim(base64_decode($decrypted_data));
}
print_r(do_mdecrypt($input1, $key));
#2.rand key: "CWSTOAYD":生成随机密匙,统一用字母或者数字,长度为8.
function randomkeys($length)
{
$pattern = '1234567890';
for($i=0;$i<$length;$i++)
{
@$key .= $pattern{rand(0,9)}; //生成php随机数
}
return $key;
}
?>