由于做微信第三方平台,加密解密处理时 mcrypt_module_open()函数在7.1中被贬低,将在7.2中被移除,要用openssl_decrypt()函数代替。废话不多说了。直接给代码
对明文加密:
原代码
//获得16位随机字符串,填充到明文之前
$random = $this->getRandomStr();
$text = $random . pack("N", strlen($text)) . $text . $appid;
// 网络字节序
$size = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
$module = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');
$iv = substr($this->key, 0, 16);
//使用自定义的填充方式对明文进行补位填充
$pkc_encoder = new PKCS7Encoder;
$text = $pkc_encoder->encode($text);
mcrypt_generic_init($module, $this->key, $iv);
//加密
$encrypted = mcrypt_generic($module, $text);
mcrypt_generic_deinit($module);
mcrypt_module_close($module);
修改为
$random = $this->getRandomStr();
$text = $random . pack("N", strlen($text)) . $text . $appid;
$iv = substr($this->key, 0, 16);
$pkc_encoder = new PKCS7Encoder;
$text = $pkc_encoder->encode($text);
$encrypted = openssl_encrypt($text, 'AES-256-CBC', $this->key, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $iv);
对密文解密:
原代码
//使用BASE64对需要解密的字符串进行解码
$ciphertext_dec = base64_decode($encrypted);
$module = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');
$iv = substr($this->key, 0, 16);
mcrypt_generic_init($module, $this->key, $iv);
//解密
$decrypted = mdecrypt_generic($module, $ciphertext_dec);
mcrypt_generic_deinit($module);
mcrypt_module_close($module);
改为:
$ciphertext_dec = base64_decode($encrypted);
$iv = substr($this->key, 0, 16);
$decrypted = openssl_decrypt($ciphertext_dec, 'AES-256-CBC', $this->key, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $iv);
另附php7.1以上 php 7.2/php7.3/php8.0 安装 mcrypt 扩展
php的 mcrypt扩展,在php7.1版本以后便不支持,在7.2版本则直接废弃。
1. 下载 mcrypt 扩展源码
下载地址 https://pecl.php.net/package/mcrypt
我下载的是1.0.3,下载最新版即可
2. mcrypt 扩展安装
下载好之后,进行解压tar xf mcrypt-1.0.3.tgz
进行扩展安装
- 然后进入到源码目录
cd mcrypt-1.0.3
- 通过 phpize 建立 php 外挂模式
phpize
- 生成相应的makefile
./configure
- 进行编译安装
make && make install
安装成功后会显示
Installing shared extensions: /usr/local/Cellar/php@7.3/7.3.22/pecl/20180731/
在上面那个目录里可以看看到 mcrypt.so 文件
3. mcrypt 扩展配置
找到 php.ini 文件,在配置最后添加extension=mcrypt
重启 php 生效brew services restart php@7.3