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

php中加密解密DES类的简单使用方法示例

发布:smiling 来源: PHP粉丝网  添加日期:2022-02-22 11:19:24 浏览: 评论:0 

本文实例讲述了php中加密解密DES类的简单使用方法,分享给大家供大家参考,具体如下:

在平时的开发工作中,我们经常会对关键字符进行加密,可能为了安全 也可能为了规范,所以要正确使用DES加密解密

在这里插入图片描述

代码1:

  1. class DES 
  2.   var $key// 密钥 
  3.   var $iv// 偏移量 
  4.  
  5.   function __construct( $key$iv=0 ) { 
  6.     $this->key = $key
  7.     if$iv == 0 ) { 
  8.  
  9.       $this->iv = $key
  10.  
  11.     } else { 
  12.  
  13.       $this->iv = $iv;  
  14.       // 创建初始向量, 并且检测密钥长度, Windows 平台请使用 MCRYPT_RAND 
  15.       // mcrypt_create_iv ( mcrypt_get_block_size (MCRYPT_DES, MCRYPT_MODE_CBC), MCRYPT_DEV_RANDOM ); 
  16.  
  17.     } 
  18.  
  19.   } 
  20.  
  21.   function encrypt($str) { 
  22.     //加密,返回大写十六进制字符串 
  23.     $size = mcrypt_get_block_size ( MCRYPT_DES, MCRYPT_MODE_CBC ); 
  24.  
  25.     $str = $this->pkcs5Pad ( $str$size ); 
  26.  // bin2hex 把 ASCII 字符的字符串转换为十六进制值 
  27.     return strtoupper( bin2hex( mcrypt_cbc(MCRYPT_DES, $this->key, $str, MCRYPT_ENCRYPT, $this->iv ) ) ); 
  28.  
  29.   } 
  30.  
  31.   function decrypt($str) { 
  32.     //解密 
  33.  
  34.     $strBin = $this->hex2bin( strtolower$str ) ); 
  35.  
  36.     $str = mcrypt_cbc( MCRYPT_DES, $this->key, $strBin, MCRYPT_DECRYPT, $this->iv ); 
  37.  
  38.     $str = $this->pkcs5Unpad( $str ); 
  39.  
  40.     return $str
  41.  
  42.   } 
  43.  
  44.  
  45.   function hex2bin($hexData) { 
  46.  
  47.     $binData = ""
  48.  
  49.     for($i = 0; $i < strlen ( $hexData ); $i += 2) { 
  50.  
  51.       $binData .= chr ( hexdec ( substr ( $hexData$i, 2 ) ) ); 
  52.  
  53.     } 
  54.  
  55.     return $binData
  56.  
  57.   } 
  58.  
  59.   function pkcs5Pad($text$blocksize) { 
  60.  
  61.     $pad = $blocksize - (strlen ( $text ) % $blocksize); 
  62.  
  63.     return $text . str_repeat ( chr ( $pad ), $pad ); 
  64.  
  65.   } 
  66.  
  67.   function pkcs5Unpad($text) { 
  68.  
  69.     $pad = ord ( $text {strlen ( $text ) - 1} ); 
  70.  
  71.     if ($pad > strlen ( $text )) 
  72.  
  73.       return false; 
  74.  
  75.     if (strspn ( $textchr ( $pad ), strlen ( $text ) - $pad ) != $pad
  76.  
  77.       return false; 
  78.  
  79.     return substr ( $text, 0, - 1 * $pad ); 
  80.   } 

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; DES5 has a deprecated constructor in D:\phpstudy_pro\WWW\des\DES5.php on line 2

Fatal error: Uncaught Error: Call to undefined function mcrypt_get_block_size() in D:\phpstudy_pro\WWW\des\DES5.php:19 Stack trace: #0 D:\phpstudy_pro\WWW\des\1.php(10): DES5->encrypt('podsmia') #1 {main} thrown in D:\phpstudy_pro\WWW\des\DES5.php on line 19

mcrypt_cbc 以 CBC 模式加解密数据, 在PHP 5.5.0+被弃用, PHP 7.0.0被移除

mcrypt_encrypt / mcrypt_decrypt 使用给定参数加密 / 解密, 在PHP 7.1.0+被弃用, 在PHP 7.2.0+被移除

代码2:

  1. class DES7 
  2.  
  3.   //要改的加密, 使用 openssl 
  4.  
  5.   public function desEncrypt($str,$key) { 
  6.  
  7.     $iv = $key
  8.  
  9.     $data = openssl_encrypt($str,"DES-CBC",$key,OPENSSL_RAW_DATA,$iv); 
  10.  
  11.     $data = strtolower(bin2hex($data)); 
  12.  
  13.     return $data
  14.  
  15.   } 
  16.  
  17.   //要改的解密 
  18.  
  19.   public function desDecrypt($str,$key) { 
  20.  
  21.     $iv = $key
  22.  
  23.     return openssl_decrypt (hex2bin($str), 'DES-CBC'$key, OPENSSL_RAW_DATA,$iv); 
  24.  
  25.   } 
  26.  
  27. }

Tags: php加密解密 DES类

分享到: