当前位置:首页 > PHP教程 > php类库 > 列表

php加密解密实用类分享

发布:smiling 来源: PHP粉丝网  添加日期:2020-08-23 20:55:59 浏览: 评论:0 

加密和解密是一项常规任务,这里介绍一个加解密类。如果你想在用户忘记密码时为他或她找回原来的密码,那么这个类是个好用的工具.

用户注册的密码一般不会明文保存,总得加个密先。最简单的当然是在数据库sql语句中调用md5函数加密用户密码。这里介绍一个加解密类。如果你想在用户忘记密码时为他或她找回原来的密码,那么这个类是个好用的工具。当然,这个加解密类也可用于其他用途。

  1. <?php 
  2.  
  3. class crypt { 
  4.  
  5.     private $skey
  6.  
  7.     public function __construct($key) { 
  8.         $this->skey = hash("md5"$key, true); //32位skey 
  9.     } 
  10.  
  11.     public function safe_b64encode($string) { 
  12.         $data = base64_encode($string); 
  13.         $data = str_replace(array('+''/''='), array('-''_'''), $data); 
  14.         return $data
  15.     } 
  16.  
  17.     public function safe_b64decode($string) { 
  18.         $data = str_replace(array('-''_'), array('+''/'), $string); 
  19.         $mod4 = strlen($data) % 4; 
  20.         if ($mod4) { 
  21.             $data .= substr('===='$mod4); 
  22.         } 
  23.         return base64_decode($data); 
  24.     } 
  25.  
  26.     public function encode($value) { 
  27.         if (!$value) { 
  28.             return false; 
  29.         } 
  30.         $text = $value
  31.         $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB); 
  32.         $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); 
  33.         $crypttext = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->skey, $text, MCRYPT_MODE_ECB, $iv); 
  34.         return trim($this->safe_b64encode($crypttext)); 
  35.     } 
  36.  
  37.     public function decode($value) { 
  38.         if (!$value) { 
  39.             return false; 
  40.         } //phpfensi.com 
  41.         $crypttext = $this->safe_b64decode($value); 
  42.         $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB); 
  43.         $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); 
  44.         $decrypttext = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->skey, $crypttext, MCRYPT_MODE_ECB, $iv); 
  45.         return trim($decrypttext); 
  46.     } 
  47.  

Tags: php加密解密

分享到: