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

PHP和C#可共用的可逆加密算法详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-21 10:49:01 浏览: 评论:0 

在一些项目中要求在php中生成加密,然后在asp.net中接受过来的密码再解密,下面和大家分享一个PHP与asp.net C#可共用的可逆加密算法,感兴趣的可以参考参考。

php加密算法:

  1. <?php 
  2. class DES 
  3.   var $key
  4.   var $iv//偏移量 
  5.     
  6.   function DES($key = '11001100'$iv=0 ) { 
  7.   //key长度8例如:1234abcd 
  8.     $this->key = $key
  9.     if$iv == 0 ) { 
  10.       $this->iv = $key//默认以$key 作为 iv 
  11.     } else { 
  12.       $this->iv = $iv//mcrypt_create_iv ( mcrypt_get_block_size (MCRYPT_DES, MCRYPT_MODE_CBC), MCRYPT_DEV_RANDOM ); 
  13.     } 
  14.   } 
  15.     
  16.   function encrypt($str) { 
  17.   //加密,返回大写十六进制字符串 
  18.     $size = mcrypt_get_block_size ( MCRYPT_DES, MCRYPT_MODE_CBC ); 
  19.     $str = $this->pkcs5Pad ( $str$size ); 
  20.     return strtoupper( bin2hex( mcrypt_cbc(MCRYPT_DES, $this->key, $str, MCRYPT_ENCRYPT, $this->iv ) ) ); 
  21.   } 
  22.     
  23.   function decrypt($str) { 
  24.   //解密 
  25.     $strBin = $this->hex2bin( strtolower$str ) ); 
  26.     $str = mcrypt_cbc( MCRYPT_DES, $this->key, $strBin, MCRYPT_DECRYPT, $this->iv ); 
  27.     $str = $this->pkcs5Unpad( $str ); 
  28.     return $str
  29.   } 
  30.     
  31.   function hex2bin($hexData) { 
  32.     $binData = ""
  33.     for($i = 0; $i < strlen ( $hexData ); $i += 2) { 
  34.       $binData .= chr ( hexdec ( substr ( $hexData$i, 2 ) ) ); 
  35.     } 
  36.     return $binData
  37.   } 
  38.  
  39.   function pkcs5Pad($text$blocksize) { 
  40.     $pad = $blocksize - (strlen ( $text ) % $blocksize); 
  41.     return $text . str_repeat ( chr ( $pad ), $pad ); 
  42.   } 
  43.     
  44.   function pkcs5Unpad($text) { 
  45.     $pad = ord ( $text {strlen ( $text ) - 1} ); 
  46.     if ($pad > strlen ( $text )) 
  47.       return false; 
  48.     if (strspn ( $textchr ( $pad ), strlen ( $text ) - $pad ) != $pad
  49.       return false; 
  50.     return substr ( $text, 0, - 1 * $pad ); 
  51.   } 
  52.     
  53. ?> 

asp.net程序代码:

  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.IO; 
  4. using System.Linq; 
  5. using System.Security.Cryptography; 
  6. using System.Text; 
  7.  
  8. namespace WindowsFormsApplication1 
  9.   /// <summary> 
  10.   /// DES加密解密字符串 
  11.   /// </summary> 
  12.   public class DesEncryption 
  13.   { 
  14.     /// <summary> 
  15.     /// DES加密字符串 
  16.     /// </summary> 
  17.     /// <param name="encryptString">待加密的字符串</param> 
  18.     /// <param name="encryptKey">加密密钥,要求为8位</param> 
  19.     /// <returns>加密成功返回加密后的字符串,失败返回null</returns> 
  20.     public static string EncryptDES(string encryptString, string encryptKey = "11001100"
  21.     { 
  22.       try 
  23.       { 
  24.         byte[] rgbKey = ASCIIEncoding.ASCII.GetBytes(encryptKey.Substring(0, 8)); 
  25.         byte[] rgbIV = rgbKey; 
  26.         byte[] inputByteArray = Encoding.UTF8.GetBytes(encryptString); 
  27.         DESCryptoServiceProvider dCSP = new DESCryptoServiceProvider(); 
  28.         MemoryStream mStream = new MemoryStream(); 
  29.         CryptoStream cStream = new CryptoStream(mStream, dCSP.CreateEncryptor(rgbKey, rgbIV), CryptoStreamMode.Write); 
  30.         cStream.Write(inputByteArray, 0, inputByteArray.Length); 
  31.         cStream.FlushFinalBlock(); 
  32.         StringBuilder ret = new StringBuilder(); 
  33.         foreach (byte b in mStream.ToArray()) 
  34.         { 
  35.           ret.AppendFormat("{0:X2}", b); 
  36.         } 
  37.         ret.ToString(); 
  38.         return ret.ToString();  
  39.       } 
  40.       catch 
  41.       { 
  42.         return null; 
  43.       } 
  44.     } 
  45.  
  46.     /// <summary> 
  47.     /// DES解密字符串 
  48.     /// </summary> 
  49.     /// <param name="decryptString">待解密的字符串</param> 
  50.     /// <param name="decryptKey">解密密钥,要求为8位,和加密密钥相同</param> 
  51.     /// <returns>解密成功返回解密后的字符串,失败返回null</returns> 
  52.     public static string DecryptDES(string decryptString, string decryptKey = "11001100"
  53.     { 
  54.       try 
  55.       { 
  56.         byte[] rgbKey = ASCIIEncoding.ASCII.GetBytes(decryptKey); 
  57.         byte[] rgbIV = rgbKey; 
  58.         byte[] inputByteArray = new byte[decryptString.Length / 2]; 
  59.         for (int x = 0; x < decryptString.Length / 2; x++) 
  60.         { 
  61.           int i = (Convert.ToInt32(decryptString.Substring(x * 2, 2), 16)); 
  62.           inputByteArray[x] = (byte)i; 
  63.         }       
  64.         DESCryptoServiceProvider DCSP = new DESCryptoServiceProvider(); 
  65.         MemoryStream mStream = new MemoryStream(); 
  66.         CryptoStream cStream = new CryptoStream(mStream, DCSP.CreateDecryptor(rgbKey, rgbIV), CryptoStreamMode.Write); 
  67.         cStream.Write(inputByteArray, 0, inputByteArray.Length); 
  68.         cStream.FlushFinalBlock(); 
  69.         return Encoding.UTF8.GetString(mStream.ToArray()); 
  70.       } 
  71.       catch 
  72.       { 
  73.         return null; 
  74.       } 
  75.     } 
  76.   } 

以上就是PHP和C#可共用的可逆加密算法,希望对大家的学习有所帮助。

Tags: PHP可逆加密算法

分享到: