您好,登錄后才能下訂單哦!
AES介紹
高級加密標準(英語:Advanced Encryption Standard,縮寫:AES),在密碼學中又稱Rijndael加密法,是美國聯邦政府采用的一種區塊加密標準。
這個標準用來替代原先的DES,已經被多方分析且廣為全世界所使用。
經過五年的甄選流程,高級加密標準由美國國家標準與技術研究院(NIST)于2001年11月26日發布于FIPS PUB 197,并在2002年5月26日成為有效的標準。
2006年,高級加密標準已然成為對稱密鑰加密中最流行的算法之一。
class AES
{
public $method = '';
public $key = '';
public $iv = '';
public function __construct(string $method, string $key, string $iv)
{
if (!in_array($method, openssl_get_cipher_methods())) {
throw new \Exception($method . ' encryption method is not support.');
}
$this->method = $method;
$this->key = $key;
$this->iv = $iv;
}
//AES加密
public function aesEncryption(string $data): string
{
$result = openssl_encrypt($data, $this->method, $this->key, OPENSSL_RAW_DATA, $this->iv);
return base64_encode($result);
}
//AES解密
public function aesDecryption(string $data): string
{
return openssl_decrypt(base64_decode($data), $this->method, $this->key, OPENSSL_RAW_DATA, $this->iv);
}
}
$config = [
'AES-128-CBC1', //method加密方式 # AES-256-CBC等
'helloworld', //key加密key
md5(time() . uniqid(), true), //iv保證偏移量為16位
];
try{
$obj = new AES(...$config);
echo $encryptionResult = $obj->aesEncryption('Jack') . PHP_EOL;
echo $decryptionResult = $obj->aesDecryption($encryptionResult) . PHP_EOL;
}catch (\Exception $e){
exit($e->getMessage().PHP_EOL);
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。