<?php
// XOR encrypt/descript
function xor_encrypt($plain,$key) {
$seed=str_repeat($key,strlen($plain));
return bin2hex($plain^$seed);
}
function xor_decrypt($enc,$key) {
$seed=str_repeat($key,strlen($enc));
return pack("H*",$enc)^$seed;
}
// 测试代码
$key='v';
$enc=xor_encrypt("http://www.baidu.com",$key);
echo "enc:[".$enc."]\n";
echo "Org:[".xor_decrypt($enc,$key)."]\n";
?>
enc:[1e0202064c59590101015814171f12035815191b]
Org:[http://www.baidu.com]
上一篇>>shuipfcms ajax分页
下一篇>>parse_url
Copyright © 2016 Allister All Rights Reserved