phpの単純な暗号化復号コード
1804 ワード
class SysCrypt{
private $crypt_key='//www.jb51.net';//
public function __construct($crypt_key){
$this->crypt_key=$crypt_key;
}
public function encrypt($txt){
srand((double)microtime()*1000000);
$encrypt_key=md5(rand(0,32000));
$ctr=0;
$tmp='';
for($i=0;$i $ctr=$ctr==strlen($encrypt_key)?0:$ctr;
$tmp.=$encrypt_key[$ctr].($txt[$i]^$encrypt_key[$ctr++]);
}
return base64_encode(self::__key($tmp,$this->crypt_key));
}
public function decrypt($txt){
$txt=self::__key(base64_decode($txt),$this->crypt_key);
$tmp='';
for($i=0;$i $md5=$txt[$i];
$tmp.=$txt[++$i]^$md5;
}
return $tmp;
}
private function __key($txt,$encrypt_key){
$encrypt_key=md5($encrypt_key);
$ctr=0;
$tmp='';
for($i=0;$i $ctr=$ctr==strlen($encrypt_key)?0:$ctr;
$tmp.=$txt[$i]^$encrypt_key[$ctr++];
}
return $tmp;
}
public function __destruct(){
$this->crypt_key=NULL;
}
}
このクラスの使用方法:
$sc=new SysCrypt('//www.jb51.net');
$text='[email protected]';
$test1=$sc->encrypt($text);
echo ' :',$text;
echo '
';
echo ' :',$test1;
echo "
";
echo ' :',$sc->decrypt($test1);
出力結果は類似しています.
原文:[email protected]密文:BS 8 DbFU 6 AioCNFFlVGZQMgRGBUOYlEzBXoAZgo 0 Bjk=解読:[email protected]