/**
*機能: 文字列の暗号化
*パラメータ1: 暗号化するコンテンツ
*パラメータ2: キー
*/
function Passport_encrypt($str,$key){ //加密関数
srand((double)microtime() * 1000000);
$encrypt_key=md5(rand (0, 32000));
$ctr=0;
$tmp='';
for($i=0;$i
$tmp.=$encrypt_key[$ctr].($str[$i] ^ $encrypt_key[$ctr++]);
}
returnbase64_encode(passport_key($tmp,$キー));
}
/**
*関数: 文字列を復号化します
*パラメータ 1: 復号化する暗号文
*パラメータ 2: キー
*/
functionパスポート_decrypt($str,$key){ //解密関数
$str=passport_key(base64_decode($str),$key);
$tmp='';
for( $i=0;$i
$tmp.=$str[++$i] ^ $md5;
}
return $tmp;
}
/**
*補助機能
*/
functionパスポート_key($str,$encrypt_key){
$encrypt_key=md5($encrypt_key);
$ctr=0;
$tmp='';
for($i=0 ;$i
$tmp.=$str[$i] ^ $encrypt_key[$ctr++ ];
}
$tmp を返します;
}
$str='作者:www.phpernote.com';
$key='658jr';
$encrypt=passport_encrypt($str,$key);
$decrypt=passport_decrypt($encrypt,$key);
echo '翻訳:',$str."