php対称暗号化アルゴリズム
KEYは前に定義した定数です
コードをコピーします コードは次のとおりです:
Mcrypt::encrypt();
Mcrypt::decrypt();
コードをコピーします コードは次のとおりです:
define('ROOT') or exit('Access Denied');
class Mcrypt{
public static function encrypt($code){
returnbase64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, md5(KEY), $code, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_EC B), _ランド)));
}
public static function decrypt($code){
return mcrypt_decrypt(MCRYPT_RIJNDAEL_256, md5(KEY),base64_decode($code), MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND)) ;
}
}
一般的に使用される対称暗号化アルゴリズム (DES/AES)
xcrypt.php
コードをコピーします コードは次のとおりです:
/**
* 一般的に使用される対称暗号化アルゴリズム
* サポートされるキー: 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{
プライベート $mcrypt;
プライベート $key;
プライベート $mode;
プライベート $iv;
プライベート $blocksize;
/**
* コンストラクター
*
* @param 文字列キー
* @param 文字列モード
* @param 文字列ベクトル ("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 必须有向量
休憩;
case 'cfb':
$this->mode = MCRYPT_MODE_CFB;
if ($iv == 'off') die('CFB は IV を与える必要があります'); //CFB 必须有向量
休憩;
case 'ecb':
$this->mode = MCRYPT_MODE_ECB;
$iv = 'オフ'; //ECB 不必要向量
ブレーク;
case '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;
}
}
/**
*/
public function getIV($code = 'base64'){
switch ($code){
case 'base64':
$ret =base64_encode($これ->iv);
休憩。
case 'hex':
$ret = bin2hex($this->iv);
休憩。
case 'bin':
デフォルト:
$ret = $this->iv;
}
return $ret;
}
/**
* 暗号化
* @param 文字列平文
* @param 文字列暗号文エンコード (base64/hex/bin)
* @return 文字列暗号文
*/
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);
休憩。
case 'hex':
$ret = bin2hex($result);
休憩。
case 'bin':
デフォルト:
$ret = $result;
}
return $ret;
}
/**
*/
public function decrypt($str, $code = "base64"){
$ret = false;
switch ($code){
case 'base64':
$str = Base64_decode($str);
休憩。
case 'hex':
$str = $this->_hex2bin($str);
休憩。
case 'bin':
デフォルト:
}
if ($str !== false){
if (isset($this->iv)) {
$ret = mcrypt_decrypt($this->mcrypt, $this->key、$str、$this->mode、$this->iv);
} else {
@$ret = mcrypt_decrypt($this->mcrypt, $this->key, $str, $this->mode);
}
if ($this->mcrypt == MCRYPT_DES) $ret = $this->_pkcs5Unpad($ret);
$ret = トリム($ret);
}
return $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 '
'; <br>$a = isset($_GET['a']) ? $_GET['a'] : '测试123'; <br><br>//密钥 <br>$key = '12345678123456781234567812345678'; //256 ビット <br>$key = '1234567812345678'; //128 ビット <br>$key = '12345678'; //64 ビット <br><br>//設置モード和IV <br>$m = new Xcrypt($key, 'cbc', 'auto'); <br><br>//获取向量值 <br>echo '向量:'; <br>var_dump($m->getIV()); <br><br>//加密 <br>$b = $m->encrypt($a, 'base64'); <br>//解密 <br>$c = $m->decrypt($b, 'base64'); <br><br>echo '加密後:'; <br>var_dump($b); <br>echo '解密後:'; <br>var_dump($c); <br>echo '
';
http://www.bkjia.com/PHPjc/766111.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/766111.html技術記事 PHP 対称暗号化アルゴリズム KEY は、前に定義された定数です。次のようにコードをコピーします。 Mcrypt::encrypt(); Mcrypt::decrypt(); 次のようにコードをコピーします。 ..