You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1014 B
PHP

<?php
/**
* Created by PhpStorm.
* User: wilson
* Date: 16/7/7
* Time: 16:21
*/
abstract class BlowfishEncrypter{
/**
* 算法,另外还有192和256两种长度
*/
const CIPHER = MCRYPT_BLOWFISH;
/**
* 模式
*/
const MODE = MCRYPT_MODE_CFB;
/**
* 加密
* @param string $str 需加密的字符串
* @param string $key 密钥
* @return type
*/
static public function encode( $str, $key){
echo $str;
echo "123456789";
echo "<br>";
echo $key;
$md5Key = md5($key);
return base64_encode(mcrypt_encrypt(self::CIPHER, substr($md5Key,0,16), $str, self::MODE, substr($md5Key,0,8)));
}
/**
* 解密
* @param type $str
* @param type $key
* @return type
*/
static public function decode( $str, $key ){
$md5Key = md5($key);
return mcrypt_decrypt(self::CIPHER, substr($md5Key,0,16),base64_decode($str), self::MODE, substr($md5Key,0,8));
}
}