PHP实现的AES加密、解密封装类与用法示例
作者:u011474028 时间:2023-07-23 12:56:45
本文实例讲述了PHP实现的AES加密、解密封装类与用法。分享给大家供大家参考,具体如下:
<?php
/**
* Class AES
* 用于AES加解密数据
* time:2018-04-27
*/
class AES
{
protected $cipher = MCRYPT_RIJNDAEL_256; //AES加密算法
protected $mode = MCRYPT_MODE_CBC; //采用cbc加密模式
protected $key; //密钥
protected $iv; //cbc模式加密向量,如为空将采用密钥代替
/**
* AES constructor.
*
* @param $key 密钥
* @param null $iv 向量 可选 如为空将采用密钥代替
*
* @throws Exception
*/
public function __construct($key, $iv = NULL)
{
if (!extension_loaded("mcrypt")) {
// throw new \Exception("mcrypt extension do not exist. it was DEPRECATED in PHP 7.1.0, and REMOVED in PHP 7.2.0. use OpenSSL instead");
}
$this->key = $key;
$this->iv = $iv;
}
/**
* 加密数据
* @param $data
*
* @return string
*/
public function encrypt($data)
{
$td = mcrypt_module_open($this->cipher, '', $this->mode, '');
$key = hash("sha256", $this->key, true);
$iv = isset($this->iv) ? hash("sha256", $this->iv, true) : $key;
$data = $this->padding($data);
mcrypt_generic_init($td, $key, $iv);
$encryptedData = base64_encode(mcrypt_generic($td, $data));
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
return $encryptedData;
}
/**
* 解密数据
* @param $data
*
* @return bool|string
*/
public function decrypt($data)
{
$td = mcrypt_module_open($this->cipher, '', $this->mode, '');
$key = hash("sha256", $this->key, true);
$iv = isset($this->iv) ? hash("sha256", $this->iv, true) : $key;
mcrypt_generic_init($td, $key, $iv);
$decrypted_data = mdecrypt_generic($td, base64_decode($data));
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
return $this->unPadding($decrypted_data);
}
/**
* 填充数据到分组大小的整数倍
* @param null $data
*
* @return string
*/
protected function padding($data = null)
{
$blockSize = 32; //MCRYPT_RIJNDAEL_256算法的分组大小是32字节
$pad = $blockSize - (strlen($data) % $blockSize);
return $data . str_repeat(chr($pad), $pad);
}
/**
* 去掉填充的数据
* @param null $data
*
* @return bool|string
*/
protected function unPadding($data = null)
{
$pad = ord($data[strlen($data) - 1]);
if ($pad > strlen($data)) {
return false;
}
if (strspn($data, chr($pad), strlen($data) - $pad) != $pad) {
return false;
}
return substr($data, 0, -1 * $pad);
}
/**
* @return mixed
*/
public function getSecretKey()
{
return $this->key;
}
/**
* @param mixed $key
*/
public function setSecretKey($key)
{
$this->key = $key;
}
/**
* @return null
*/
public function getIv()
{
return $this->iv;
}
/**
* @param null $iv
*/
public function setIv($iv)
{
$this->iv = $iv;
}
}
//使用方法:
$keyStr = 'sq8f77fwhksk';
$aes = new AES($keyStr);
$str = 'www.aspxhome.com';
$chgstr = $aes->encrypt($str);
echo $chgstr;
echo "<br/>";
$rstr = $aes->decrypt($chgstr);
echo $rstr;
?>
运行结果:
pDyiRRNaxlss2b6SgoiVPdkD2m1QWhX393lh2iFgGdY=
www.aspxhome.com
希望本文所述对大家PHP程序设计有所帮助。
来源:https://blog.csdn.net/u011474028/article/details/80108810
标签:PHP,AES,加密
0
投稿
猜你喜欢
python初学之用户登录的实现过程(实例讲解)
2023-03-16 17:27:37
golang操作elasticsearch的实现
2024-02-04 08:42:45
如何使用Python优雅的合并两个字典Dict
2023-10-12 22:50:36
python利用opencv如何实现答题卡自动判卷
2021-05-07 12:13:41
ORCAL 临时创建表与删除表
2023-07-12 19:30:05
python如何实现不可变字典inmutabledict
2023-11-20 11:09:46
Go语言题解LeetCode下一个更大元素示例详解
2024-05-21 10:25:33
Python编写条件分支代码方法
2021-08-16 12:31:17
response.setHeader()方法设置http文件头的值
2010-03-11 22:43:00
Python基础教程(一)——Windows搭建开发Python开发环境
2021-06-16 13:41:53
解决Win10系统安装MySQL8.0遇到的问题
2024-01-19 12:55:27
pyqt远程批量执行Linux命令程序的方法
2023-05-08 15:59:06
基于OpenCV目标跟踪实现人员计数器
2022-11-17 15:04:03
python 采集中文乱码问题的完美解决方法
2021-05-13 13:46:58
巧用Javascript的逻辑运算符
2024-04-16 09:47:42
Python + Selenium 实现模拟登录jd实例分享
2023-12-16 06:56:09
Python3如何在Windows和Linux上打包
2021-04-24 13:50:50
Python tkinter 多选按钮控件 Checkbutton方法
2022-12-31 08:38:46
深入浅析Python2.x和3.x版本的主要区别
2023-06-21 04:12:52
教你如何看懂SQL Server查询计划
2024-01-12 21:10:41