欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP实现的AES加密、解密封装类与用法示例

程序员文章站 2022-06-24 23:14:14
本文实例讲述了php实现的aes加密、解密封装类与用法。分享给大家供大家参考,具体如下:

本文实例讲述了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.jb51.net';
$chgstr = $aes->encrypt($str);
echo $chgstr;
echo "<br/>";
$rstr = $aes->decrypt($chgstr);
echo $rstr;
?>

运行结果:

pdyirrnaxlss2b6sgoivpdkd2m1qwhx393lh2ifggdy=
www.jb51.net

ps:关于加密解密感兴趣的朋友还可以参考本站在线工具:

文字在线加密解密工具(包含aes、des、rc4等):

md5在线加密工具:
http://tools.jb51.net/password/createmd5password

在线散列/哈希算法加密工具:

在线md5/hash/sha-1/sha-2/sha-256/sha-512/sha-3/ripemd-160加密工具:

在线sha1/sha224/sha256/sha384/sha512加密工具:

更多关于php相关内容感兴趣的读者可查看本站专题:《php加密方法总结》、《php编码与转码操作技巧汇总》、《php数学运算技巧总结》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php数据结构与算法教程》、《php程序设计算法总结》及《php正则表达式用法总结

希望本文所述对大家php程序设计有所帮助。