- /**
- * 一般的に使用される対称暗号化アルゴリズム
- * サポートされるキー: 64/128/256 ビット (バイト長 8/16/32)
- * サポートされるアルゴリズム: DES/AES (キーの長さに応じて自動的に照合: DES: 64bit AES :128/ 256bit)
- * サポートされているモード: CBC/ECB/OFB/CFB
- * 暗号文エンコーディング: Base64 文字列/16 進数文字列/バイナリ文字列ストリーム
- * パディング方法: PKCS5Padding (DES)
- *
- * @author: linvo
- * @version: 1.0.0
- * @日付: 2013/1/10
- */
- class Xcrypt{
-
- private $mcrypt;
- プライベート $key;
- プライベート$モード;
- プライベート $iv;
- プライベート $blocksize;
-
- /**
- * コンストラクター
- *
- * @param string key
- * @param string mode
- * @param string Vector ("off": 未使用 / "auto": 自動 / その他: 指定された値、キーと同じ長さ)
- */
- public function __construct($key, $mode = 'cbc', $iv = "off"){
- switch (strlen($key)){
- case 8:
- $this ->mcrypt = MCRYPT_DES;
- 休憩;
- ケース 16:
- $this->mcrypt = MCRYPT_RIJNDAEL_128;
- 休憩;
- ケース 32:
- $this->mcrypt = MCRYPT_RIJNDAEL_256;
- 休憩;
- デフォルト:
- die("キー サイズは 8/16/32 である必要があります");
- }
-
- $this->key = $key;
-
- switch (strto lower($mode)){
- case 'ofb':
- $this->mode = MCRYPT_MODE_OFB;
- if ($iv == 'off') die('OFB は IV を与える必要があります'); //OFB 必須须有向量
- ブレーク;
- ケース 'cfb':
- $this->mode = MCRYPT_MODE_CFB;
- if ($iv == 'off') die('CFB は IV を与える必要があります'); //CFB 必須须有向量
- ブレーク;
- ケース 'ecb':
- $this->mode = MCRYPT_MODE_ECB;
- $iv = 'オフ'; //ECB 不必要向量
- ブレーク;
- ケース 'cbc':
- デフォルト:
- $this->mode = MCRYPT_MODE_CBC;
- }
-
- switch (strto lower($iv)){
- case "off":
- $this->iv = null;
- 休憩;
- case "auto":
- $source = PHP_OS=='WINNT' ? MCRYPT_RAND : MCRYPT_DEV_RANDOM;
- $this->iv = mcrypt_create_iv(mcrypt_get_block_size($this->mcrypt, $this->mode), $source);
- 休憩;
- デフォルト:
- $this->iv = $iv;
- }
-
-
- }
-
-
- /**
- * ベクトル値を取得します
- * @param 文字列ベクトル値のエンコード (base64/hex/bin)
- * @return 文字列ベクトル値
- */
- public function getIV($code = 'base64'){
- switch ($code){
- case 'base64':
- $ret =base64_encode($これ->iv);
- 休憩;
- ケース 'hex':
- $ret = bin2hex($this->iv);
- 休憩;
- ケース 'bin':
- デフォルト:
- $ret = $this->iv;
- }
- $ret を返す;
- }
-
-
- /**
- * 暗号化
- * @param string 平文
- * @param string 暗号文エンコード (base64/hex/bin)
- * @return string 暗号文
- */
- public function encrypt($str, $code = 'base64'){
- if ($this->mcrypt == MCRYPT_DES) $str = $this-> _pkcs5Pad($str);
-
- if (isset($this->iv)) {
- $result = mcrypt_encrypt($this->mcrypt, $this->key, $str, $this->mode, $this->> iv);
- } else {
- @$result = mcrypt_encrypt($this->mcrypt, $this->key, $str, $this->mode);
- }
-
- switch ($code){
- case 'base64':
- $ret = Base64_encode($result);
- 休憩;
- ケース 'hex':
- $ret = bin2hex($result);
- 休憩;
- ケース 'bin':
- デフォルト:
- $ret = $result;
- }
-
- $ret を返す;
-
- }
-
- /**
- * 復号化
- * @param string ciphertext
- * @param string ciphertext エンコーディング (base64/hex/bin)
- * @return string plaintext
- */
- public function decrypt($str, $code = "base64"){
- $ret = false;
-
- switch ($code){
- case 'base64':
- $str = Base64_decode($str);
- 休憩;
- case 'hex':
- $str = $this->_hex2bin($str);
- 休憩;
- ケース 'bin':
- デフォルト:
- }
-
- if ($str !== false){
- if (isset($this->iv)) {
- $ret = mcrypt_decrypt($this->mcrypt, $this->key, $str, $ this->モード、$this->iv);
- } else {
- @$ret = mcrypt_decrypt($this->mcrypt, $this->key, $str, $this->mode);
- }
- if ($this->mcrypt == MCRYPT_DES) $ret = $this->_pkcs5Unpad($ret);
- }
-
- $ret を返す;
- }
-
-
-
- プライベート関数 _pkcs5Pad($text){
- $this->blocksize = mcrypt_get_block_size($this->mcrypt, $this->mode);
- $pad = $this->blocksize - (strlen($text) % $this->blocksize);
- $text を返します。 str_repeat(chr($pad), $pad);
- }
-
- プライベート関数 _pkcs5Unpad($text){
- $pad = ord($text{strlen($text) - 1});
- if ($pad > strlen($text)) は false を返します。
- if (strspn($text, chr($pad), strlen($text) - $pad) != $pad) は false を返します。
- $ret = substr($text, 0, -1 * $pad);
- $ret を返す;
- }
-
- プライベート関数 _hex2bin($hex = false){
- $ret = $hex !== false && preg_match('/^[0-9a-fA-F]+$/i', $hex) ?パック("H*", $hex) : false;
- $ret を返す;
- }
-
-
-
- }
-
复制代码
使用例:
- header('Content-Type:text/html;Charset=utf-8;');
-
- 「xcrypt.php」を含める;
-
- echo '
';
- ////////////////////////////////////
- $a = isset($_GET['a '])? $_GET['a'] : '测试123';
-
- //密钥
- $key = '12345678123456781234567812345678'; //256 ビット
- $key = '1234567812345678'; //128 ビット
- $key = '12345678'; //64 ビット
-
- //設置モード和IV
- $m = new Xcrypt($key, 'cbc', 'auto');
-
- //获取向量值
- echo '向量:';
- var_dump($m->getIV());
-
- //加密
- $b = $m->encrypt($a, 'base64');
- //解密
- $c = $m->decrypt($b, 'base64');
-
- echo '加密後:';
- var_dump($b);
- echo '解密後:';
- var_dump($c);
-
-
- ////////////////////////////////////////
- エコー '前>';
复制代
|