http://blog.ddian.cn/?post=923
-
class Ender{
- private $enkey;//暗号化と復号化に使用される鍵
- //構築パラメータは key です
- public function __construct($key=''){
- if(! $ key){
- $this->enkey=$key;
- }
- }
- // キーを設定します
- public 関数 set_key($key){
- $this->enkey=$key;
- }
- private 関数keyED ($txt,$encrypt_key)
- {
- $encrypt_key = md5($encrypt_key);
- $tmp = "" for ($i=0;$i {
- if ($ctr==strlen($encrypt_key)) $ctr=0;
- $tmp.= substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1);
- $ctr++
- }
- return $tmp;
- }
- //文字列を暗号化する
- public function encrypt($txt,$key='')
- {
- if(!$key){
- $key=$this-> ;enkey;
- }
- srand((double)microtime()*1000000);
- $ctr=0;
- $tmp = ""; =0;$i {
- if ($ctr==strlen($encrypt_key)) $ctr=0;
- $tmp.= substr($encrypt_key,$ctr,1) .
- (substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1));
- $ctr++; }
- returnbase64_encode($this->keyED($tmp,$key)) ;
- }
- //文字列を復号化する
- public function decrypt($txt,$key='')
- {
- $txt=base64_decode($txt);
- if(!$key){
- $key=$this- > ;enkey;
- }
- $txt = $this->keyED($txt,$key);
- $tmp = ""
- for ($i=0;$i {
- $md5 = substr($txt,$i,1);
- $tmp.= (substr($txt,$i,1) ^ $md5); /http://blog.ddian.cn
- }
-
- }
-
-
- コードをコピー
-
-
-
-
-
|