PHP 实现一个字符串加密解密的函数
http://www.cnblogs.com/roucheng/
*****/
function encrypt($string,$operation,$key='')
{
$key=md5($key);
$key_length=strlen($key);
$string=$operation=='D'?base64_decode($string):substr(md5($string.$key),8).$string;
$string_length=strlen($string);
$rndkey=$Box=array();
$result='';
for($i=0;$i<=255;$i++)
{
$rndkey[$i]=ord($key[$i%$key_length]);
$Box[$i]=$i;
}
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++)
{
$a=($a+1)%256;
$j=($j+$Box[$a])%256;
$tmp=$Box[$a];
$Box[$a]=$Box[$j];
$Box[$j]=$tmp;
$result.=chr(ord($string[$i])^($Box[($Box[$a]+$Box[$j])%256]));
}
if($operation=='D')
{
if(substr($result,8)==substr(md5(substr($result,8).$key),8))
{
return substr($result,8);
}
else
{
return'';
}
}
else
{
return str_replace('=','',base64_encode($result));
}
}
使用实例:
$token = encrypt($id,'a');
echo '加密:'.encrypt($id,'a');
echo '
';
echo '解密:'.encrypt($token,'a');
运行结果:
加密:AYCnIibFlg3ViRs 解密:132
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:https://www.f2er.com/php/18649.html