当前位置:首页 > PHP教程 > php应用 > 列表

php实现的AES加密类定义与用法示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-01 15:15:41 浏览: 评论:0 

这篇文章主要介绍了php实现的AES加密类定义与用法,结合完整实例形式分析了基于php的AES加密类实现及使用方法,需要的朋友可以参考下。

本文实例讲述了php实现的AES加密类定义与用法,分享给大家供大家参考,具体如下:

CryptAES.class.php文件:

  1. <?php 
  2. class CryptAES 
  3.  protected $cipher = MCRYPT_RIJNDAEL_128; 
  4.  protected $mode = MCRYPT_MODE_ECB; 
  5.  protected $pad_method = NULL; 
  6.  protected $secret_key = ''
  7.  protected $iv = ''
  8.  public function set_cipher($cipher
  9.  { 
  10.  $this->cipher = $cipher
  11.  } 
  12.  public function set_mode($mode
  13.  { 
  14.  $this->mode = $mode
  15.  } 
  16.  public function set_iv($iv
  17.  { 
  18.  $this->iv = $iv
  19.  } 
  20.  public function set_key($key
  21.  { 
  22.  $this->secret_key = $key
  23.  } 
  24.  public function require_pkcs5() 
  25.  { 
  26.  $this->pad_method = 'pkcs5'
  27.  } 
  28.  protected function pad_or_unpad($str$ext
  29.  { 
  30.  if ( is_null($this->pad_method) ) 
  31.  { 
  32.   return $str
  33.  } 
  34.  else 
  35.  { 
  36.   $func_name = __CLASS__ . '::' . $this->pad_method . '_' . $ext . 'pad'
  37.   if ( is_callable($func_name) ) 
  38.   { 
  39.   $size = mcrypt_get_block_size($this->cipher, $this->mode); 
  40.   return call_user_func($func_name$str$size); 
  41.   } 
  42.  } 
  43.  return $str
  44.  } 
  45.  protected function pad($str
  46.  { 
  47.  return $this->pad_or_unpad($str''); 
  48.  } 
  49.  protected function unpad($str
  50.  { 
  51.  return $this->pad_or_unpad($str'un'); 
  52.  } 
  53.  public function encrypt($str
  54.  { 
  55.  $str = $this->pad($str); 
  56.  $td = mcrypt_module_open($this->cipher, ''$this->mode, ''); 
  57.  if ( emptyempty($this->iv) ) 
  58.  { 
  59.   $iv = @mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND); 
  60.  } 
  61.  else 
  62.  { 
  63.   $iv = $this->iv; 
  64.  } 
  65.  mcrypt_generic_init($td$this->secret_key, $iv); 
  66.  $cyper_text = mcrypt_generic($td$str); 
  67.  //$rt=base64_encode($cyper_text); 
  68.  $rt = bin2hex($cyper_text); 
  69.  mcrypt_generic_deinit($td); 
  70.  mcrypt_module_close($td); 
  71.  return $rt
  72.  } 
  73.  public function decrypt($str){ 
  74.  $td = mcrypt_module_open($this->cipher, ''$this->mode, ''); 
  75.  if ( emptyempty($this->iv) ) 
  76.  { 
  77.   $iv = @mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND); 
  78.  } 
  79.  else 
  80.  { 
  81.   $iv = $this->iv; 
  82.  } 
  83.  mcrypt_generic_init($td$this->secret_key, $iv); 
  84.  $decrypted_text = mdecrypt_generic($td, self::hex2bin($str)); 
  85.  //$decrypted_text = mdecrypt_generic($td, base64_decode($str)); 
  86.  $rt = $decrypted_text
  87.  mcrypt_generic_deinit($td); 
  88.  mcrypt_module_close($td); 
  89.  return $this->unpad($rt); 
  90.  } 
  91.  public static function hex2bin($hexdata) { 
  92.  $bindata = ''
  93.  $length = strlen($hexdata); 
  94.  for ($i=0; $i < $length$i += 2) 
  95.  { 
  96.   $bindata .= chr(hexdec(substr($hexdata$i, 2))); 
  97.  } 
  98.  return $bindata
  99.  } 
  100.  public static function pkcs5_pad($text$blocksize
  101.  { 
  102.  $pad = $blocksize - (strlen($text) % $blocksize); 
  103.  return $text . str_repeat(chr($pad), $pad); 
  104.  } 
  105.  public static function pkcs5_unpad($text
  106.  { 
  107.  $pad = ord($text{strlen($text) - 1}); 
  108.  if ($pad > strlen($text)) return false; 
  109.  if (strspn($textchr($pad), strlen($text) - $pad) != $padreturn false; 
  110.  return substr($text, 0, -1 * $pad); 
  111.  } 
  112. ?> 

用法:

  1. require_once("CryptAES.class.php"); 
  2. $keyStr = 'ss4fs4skfhksk'
  3. $aes = new CryptAES(); 
  4. $keyStr = $aes->hex2bin($keyStr); 
  5. $aes->set_key($keyStr); 
  6. $aes->require_pkcs5(); 
  7. $d = $aes->encrypt($data); 

注:这里需要在php.ini中开启:extension=php_mcrypt.dll

Tags: AES加密类

分享到: