C#中使用MD5加密的方法

来源:互联网 发布:华为 海思 媒体算法 编辑:程序博客网 时间:2024/06/06 07:21

---------------------第1组---------------------

【方法一】


首先,先简单介绍一下MD5

MD5的全称是message-digest algorithm 5(信息-摘要算法,在90年代初由mit laboratory for computer science和rsa data security inc的ronald l. rivest开发出来, 经md2、md3和md4发展而来。

MD5具有很好的安全性(因为它具有不可逆的特征,加过密的密文经过解密后和加密前的东东相同的可能性极小)

引用

[c-sharp] view plain copy
  1. using System.Security.Cryptography;  
  2. using System.Text;  

具体代码如下(写在按钮的Click事件里):

[c-sharp] view plain copy
  1. byte[] result = Encoding.Default.GetBytes(this.tbPass.Text.Trim());    //tbPass为输入密码的文本框  
  2. MD5 md5 = new MD5CryptoServiceProvider();  
  3. byte[] output = md5.ComputeHash(result);  
  4. this.tbMd5pass.Text = BitConverter.ToString(output).Replace("-","");  //tbMd5pass为输出加密文本的文本框  

 

             【方法二】

[c-sharp] view plain copy
  1. C# md5加密(上)  
  2. string a; //加密前数据  
  3. string b; //加密后数据  
  4. b=System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(a,"MD5")  
  5.   
  6. using   System;  
  7. using   System.Security.Cryptography;  
  8.   
  9. 方法2  
  10.   
  11. public   static   string   GetMD5(string   myString)     
  12. {  
  13. MD5   md5     =   new   MD5CryptoServiceProvider();  
  14. byte[]   fromData   =   System.Text.Encoding.Unicode.GetBytes(myString);  
  15. byte[]   targetData   =   md5.ComputeHash(fromData);  
  16. string   byte2String   =   null;  
  17.   
  18. for   (int   i=0;   i<targetData.Length;   i++)     
  19. {  
  20. byte2String   +=   targetData[i].ToString("x");  
  21. }  
  22.   
  23. return   byte2String;  
  24. }   
  25.   
  26. using   System.Security.Cryptography;  
  27.   
  28.   
  29. ///   <summary>  
  30. ///   给一个字符串进行MD5加密  
  31. ///   </summary>  
  32. ///   <param   name="strText">待加密字符串</param>  
  33. ///   <returns>加密后的字符串</returns>  
  34. public   static   string   MD5Encrypt(string   strText)  
  35. {     
  36. MD5   md5   =   new   MD5CryptoServiceProvider();  
  37. byte[]   result   =   md5.ComputeHash(System.Text.Encoding.Default.GetBytes(strText));  
  38. return   System.Text.Encoding.Default.GetString(result);  
  39. }   


C# MD5加密 

[c-sharp] view plain copy
  1. using System.Security.Cryptography;  
  2.   
  3.   
  4. private void btnOK_Click(object sender, System.EventArgs e)  
  5. {  
  6.    string strConn = "server=192.168.0.51;database=chengheng;User id=sa; password=123";  
  7.    if(texName.Text.Trim()=="")  
  8.    {  
  9.     this.RegisterStartupScript("sf","<mce:script language='<a href="http://lib.csdn.net/base/javascript" class='replace_word' title="JavaScript知识库" target='_blank' style='color:#df3434; font-weight:bold;'>JavaScript</a>'><!--  
  10. alert('用户名不能为空');document.all('texName').focus()  
  11. // --></mce:script>");  
  12.     return;  
  13.    }  
  14.    else if(texPassword.Text.Trim()=="")  
  15.    {  
  16.     this.RegisterStartupScript("sfs","<mce:script language='javascript'><!--  
  17. alert('密码不能为空');document.all('texPassword').focus()  
  18. // --></mce:script>");  
  19.     return;  
  20.    }  
  21.    else  
  22.    {  
  23.     //将获取的密码加密与<a href="http://lib.csdn.net/base/mysql" class='replace_word' title="MySQL知识库" target='_blank' style='color:#df3434; font-weight:bold;'>数据库</a>中加了密的密码相比较  
  24.     byte[] by = md5.ComputeHash(utf.GetBytes(texPassword.Text.Trim()));  
  25.     string resultPass = System.Text.UTF8Encoding.Unicode.GetString(by);  
  26.     conn.ConnectionString=strConn;  
  27.     SqlCommand comm = new SqlCommand();  
  28.     string name = texName.Text.Trim().ToString();  
  29.     comm.CommandText="select Ruser_pwd,Ruser_nm from Ruser where Accountno = @name";  
  30.     comm.Parameters.Add("@name",SqlDbType.NVarChar,40);  
  31.     comm.Parameters["@name"].Value=name;  
  32.     try  
  33.     {       
  34.      conn.Open();  
  35.      comm.Connection=conn;  
  36.      SqlDataReader dr=comm.ExecuteReader();  
  37.      if(dr.Read())  
  38.      {  
  39.       //用户存在,对密码进行检查  
  40.       if(dr.GetValue(0).Equals(resultPass))  
  41.       {  
  42.        string user_name=dr.GetValue(1).ToString();  
  43.        string user_Accountno=texName.Text.Trim();  
  44.        Session["logon_name"]=user_name;  
  45.        Session["logon_Accountno"]=user_Accountno;  
  46.        //登录成功,进行页面导向  
  47.   
  48.       }  
  49.       else  
  50.       {  
  51.        this.RegisterStartupScript("wp","<mce:script language='javascript'><!--  
  52. alert('密码错误,请检查。')  
  53. // --></mce:script>");  
  54.       }  
  55.         
  56.      }  
  57.      else  
  58.      {  
  59.       this.RegisterStartupScript("nu","<mce:script language=javascript><!--  
  60. alert('用户名不存在,请检查。')  
  61. // --></mce:script>");  
  62.      }  
  63.     }  
  64.     catch(Exception exec)  
  65.     {   
  66.      this.RegisterStartupScript("wc","<mce:script language=javascript><!--  
  67. alert('网络连接有异,请稍后重试。')  
  68. // --></mce:script>");  
  69.     }   
  70.     finally  
  71.     {  
  72.      conn.Close();  
  73.     }  
  74.    }  
  75. }  


                                      【方法三】
一、C# MD5-16位加密实例,32位加密实例(两种方法)

环境:vs.net2005/sql server2000/xp测试通过
1.MD5 16位加密实例

[c-sharp] view plain copy
  1. public string md5(string str,int code)   
  2.  {   
  3.    if(code==16) //16位MD5加密(取32位加密的9~25字符)   
  4.   {   
  5.       return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5").ToLower().Substring(8,16) ;   
  6.   }    
  7.   else//32位加密   
  8.   {   
  9.       return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5").ToLower();   
  10.   }    
  11. }   
 
 

二、首先在界面中引入:using System.Web.Security;

假设密码对话框名字password,对输入的密码加密后存入变量pwd中,语句如下:

 string pwd = FormsAuthentication.HashPasswordForStoringInConfigFile(password.Text, "MD5");

如果要录入则录入pwd,这样数据库实际的密码为202*****等乱码了。

如果登录查询则要:

select username,password from users where username='"+ UserName.Text +"' and password='"+ pwd +"'

因为MD5不能解密,只能把原始密码加密后与数据库中加密的密码比较

三、C# MD5 加密方法 16位或32位

 

[c-sharp] view plain copy
  1. public string md5(string str,int code)   
  2.  {   
  3.    if(code==16) //16位MD5加密(取32位加密的9~25字符)   
  4.   {   
  5.       return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5").ToLower().Substring(8,16) ;   
  6.   }    
  7.   else//32位加密   
  8.   {   
  9.       return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5").ToLower();   
  10.   }    
  11. }   

    四、做一个网站时,必然涉及用户登录,用户登录必然涉及密码,密码必然涉及安全,安全必然涉及加密。
加密现时最流行也是据说最安全的算法是MD5算法,MD5是一种不可逆的算法,也就是 明文经过加密后,根据加密过的密文无法还原出明文来。
目前有好多网站专搞MD5破密,百度上搜一下MD5就搜出一大堆了,今天早上无聊试了几个破密网站,6位以内纯数字密码的MD5密文可以还原出明文,长点的或带字符的就不行了。他们是采用穷举对比的,就是说把收录到的明文和密文放到数据库里,通过密文的对比来确定明文,毕竟收录的数据有限,所以破解的密码很有限。
扯远了,搞破密MD5需要大量的MONEY,因为要一个运算得超快的计算机和一个查找性能超好的数据库和超大的数据库收录。但搞加密就比较简单。以下是我用C#写的一个MD5加密的方法,用到.NET中的方法, 通过MD5_APP.StringToMD5(string str, int i)可以直接调用:

[c-sharp] view plain copy
  1. public class MD5_APP  
  2. {  
  3.  public MD5_APP()  
  4.  {  
  5.        
  6.  }  
  7.   
  8.     public static string StringToMD5(string str, int i)  
  9.     {  
  10.         //获取要加密的字段,并转化为Byte[]数组  
  11.         byte[] data = System.Text.Encoding.Unicode.GetBytes(str.ToCharArray());  
  12.         //建立加密服务  
  13.         System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();  
  14.         //加密Byte[]数组  
  15.         byte[] result = md5.ComputeHash(data);  
  16.         //将加密后的数组转化为字段  
  17.         if (i == 16 && str != string.Empty)  
  18.         {  
  19.             return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToLower().Substring(8, 16);  
  20.         }  
  21.         else if (i == 32 && str != string.Empty)  
  22.         {  
  23.             return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToLower();  
  24.         }  
  25.         else  
  26.         {  
  27.             switch (i)  
  28.             {  
  29.                 case 16: return "000000000000000";  
  30.                 case 32: return "000000000000000000000000000000";  
  31.                 defaultreturn "请确保调用函数时第二个参数为16或32";  
  32.             }  
  33.   
  34.         }  
  35.     }  

---------------------第2组----------------------

【一、使用标准库加密】

[c-sharp] view plain copy
  1. using System;  
  2. using System.Text;  
  3. using System.Security.Cryptography;  
  4.   
  5. namespace ConsoleApplication3  
  6. {  
  7.     class Program  
  8.     {  
  9.         static void Main(string[] args)  
  10.         {  
  11.             string inStr;  
  12.             inStr = "WONSOFT";  
  13.             inStr += "/xa3/xac/xa1/xa3";  
  14.             inStr += "fdjf,jkgfkl";  
  15.             MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();  
  16.             byte[] InBytes = Encoding.GetEncoding("GB2312").GetBytes(inStr);  
  17.             byte[] OutBytes= md5.ComputeHash(InBytes);  
  18.             string OutString = "";  
  19.             for (int i = 0; i < OutBytes.Length; i++)  
  20.             {  
  21.                 OutString += OutBytes[i].ToString("x2");  
  22.             }  
  23.             Console.WriteLine(OutString);  
  24.         }  
  25.     }  
  26. }   

【二、ASP.NET专用加密方法】

[c-sharp] view plain copy
  1. // code 为加密位数,16和32   
  2. public static string Md5(string str, int code)   
  3.         {   
  4.             //str = System.Web.HttpUtility.UrlEncode(str);   
  5.             if (code == 16) //16位MD5加密(取32位加密的9~25字符)   
  6.             {   
  7.                 return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToLower().Substring(8, 16);   
  8.             }   
  9.             else//32位加密   
  10.             {   
  11.                 return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToLower();   
  12.             }   

【三、MSDN】

[c-sharp] view plain copy
  1. /// <summary>   
  2. /// MD5加密   
  3. /// </summary>   
  4. /// <param name="str"></param>   
  5. /// <returns></returns>   
  6. public static string Md5(string str)   
  7. {   
  8.     // Create a new instance of the MD5CryptoServiceProvider object.   
  9.     MD5 md5Hasher = MD5.Create();   
  10.     // Convert the input string to a byte array and compute the hash.   
  11.     byte[] data = md5Hasher.ComputeHash(Encoding.GetEncoding("UTF-8").GetBytes(str));   
  12.    // return BitConverter.ToString(data);//可以直接使用这个方法   
  13.    //  Create a new Stringbuilder to collect the bytes   
  14.    //  and create a string.   
  15.     StringBuilder sBuilder = new StringBuilder();   
  16.     // Loop through each byte of the hashed data   
  17.     // and format each one as a hexadecimal string.   
  18.     for (int i = 0; i < data.Length; i++)   
  19.     {   
  20.         sBuilder.Append(data.ToString("x2"));   
  21.     }   
  22.     // Return the hexadecimal string.   
  23.     return sBuilder.ToString();   
  24. }   
  25. }   

【四、使用淘宝API】

[c-sharp] view plain copy
  1. /// <summary>   
  2.     /// MD5加密并输出十六进制字符串   
  3.     /// </summary>   
  4.     /// <param name="str"></param>   
  5.     /// <returns></returns>   
  6.     public static string Md5Hex(string str)   
  7.     {   
  8.         string dest = "";   
  9.         //实例化一个md5对像   
  10.         MD5 md5 = MD5.Create();   
  11.         // 加密后是一个字节类型的数组,这里要注意编码UTF8/Unicode等的选择    
  12.         byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(str));   
  13.         // 通过使用循环,将字节类型的数组转换为字符串,此字符串是常规字符格式化所得   
  14.         for (int i = 0; i < s.Length; i++)   
  15.         {   
  16.             // 将得到的字符串使用十六进制类型格式。格式后的字符是大写的字母   
  17.             if (s < 16)   
  18.             {   
  19.                 dest = dest + "0" + s.ToString("X");   
  20.             }   
  21.             else   
  22.             {   
  23.                 dest = dest + s.ToString("X");   
  24.             }   
  25.         }   
  26.         return dest;   
  27.     }   

【五、自己实现MD5类】

[c-sharp] view plain copy
  1. using System;   
  2. using System.Text;   
  3. namespace Encrypter   
  4. {   
  5.     /// <summary>   
  6.     /// Summary description for MD5.   
  7.     /// </summary>   
  8.     public class MD5   
  9.     {   
  10.         const int BITS_TO_A_BYTE = 8;   
  11.         const int BYTES_TO_A_WORD = 4;   
  12.         const int BITS_TO_A_WORD = 32;   
  13.         private static long[] m_lOnBits = new long[30 + 1];   
  14.         private static long[] m_l2Power = new long[30 + 1];   
  15.         private static long LShift(long lValue, long iShiftBits)   
  16.         {   
  17.             long LShift = 0;   
  18.             if (iShiftBits == 0)   
  19.             {   
  20.                 LShift = lValue;   
  21.                 return LShift;   
  22.             }   
  23.             else   
  24.             {   
  25.                 if (iShiftBits == 31)   
  26.                 {   
  27.                     if (Convert.ToBoolean(lValue & 1))   
  28.                     {   
  29.                         LShift = 0x80000000;   
  30.                     }   
  31.                     else   
  32.                     {   
  33.                         LShift = 0;   
  34.                     }   
  35.                     return LShift;   
  36.                 }   
  37.                 else   
  38.                 {   
  39.                     if (iShiftBits < 0 || iShiftBits > 31)   
  40.                     {   
  41.                         // Err.Raise 6;   
  42.                     }   
  43.                 }   
  44.             }   
  45.             if (Convert.ToBoolean((lValue & m_l2Power[31 - iShiftBits])))   
  46.             {   
  47.                 LShift = ((lValue & m_lOnBits[31 - (iShiftBits + 1)]) * m_l2Power[iShiftBits]) | 0x80000000;   
  48.             }   
  49.             else   
  50.             {   
  51.                 LShift = ((lValue & m_lOnBits[31 - iShiftBits]) * m_l2Power[iShiftBits]);   
  52.             }   
  53.             return LShift;   
  54.         }   
  55.         private static long RShift(long lValue, long iShiftBits)   
  56.         {   
  57.             long RShift = 0;   
  58.             if (iShiftBits == 0)   
  59.             {   
  60.                 RShift = lValue;   
  61.                 return RShift;   
  62.             }   
  63.             else   
  64.             {   
  65.                 if (iShiftBits == 31)   
  66.                 {   
  67.                     if (Convert.ToBoolean(lValue & 0x80000000))   
  68.                     {   
  69.                         RShift = 1;   
  70.                     }   
  71.                     else   
  72.                     {   
  73.                         RShift = 0;   
  74.                     }   
  75.                     return RShift;   
  76.                 }   
  77.                 else   
  78.                 {   
  79.                     if (iShiftBits < 0 || iShiftBits > 31)   
  80.                     {   
  81.                         // Err.Raise 6;   
  82.                     }   
  83.                 }   
  84.             }   
  85.             RShift = (lValue & 0x7FFFFFFE) / m_l2Power[iShiftBits];   
  86.             if (Convert.ToBoolean((lValue & 0x80000000)))   
  87.             {   
  88.                 RShift = (RShift | (0x40000000 / m_l2Power[iShiftBits - 1]));   
  89.             }   
  90.             return RShift;   
  91.         }   
  92.         private static long RotateLeft(long lValue, long iShiftBits)   
  93.         {   
  94.             long RotateLeft = 0;   
  95.             RotateLeft = LShift(lValue, iShiftBits) | RShift(lValue, (32 - iShiftBits));   
  96.             return RotateLeft;   
  97.         }   
  98.         private static long AddUnsigned(long lX, long lY)   
  99.         {   
  100.             long AddUnsigned = 0;   
  101.             long lX4 = 0;   
  102.             long lY4 = 0;   
  103.             long lX8 = 0;   
  104.             long lY8 = 0;   
  105.             long lResult = 0;   
  106.             lX8 = lX & 0x80000000;   
  107.             lY8 = lY & 0x80000000;   
  108.             lX4 = lX & 0x40000000;   
  109.             lY4 = lY & 0x40000000;   
  110.             lResult = (lX & 0x3FFFFFFF) + (lY & 0x3FFFFFFF);   
  111.             if (Convert.ToBoolean(lX4 & lY4))   
  112.             {   
  113.                 lResult = lResult ^ 0x80000000 ^ lX8 ^ lY8;   
  114.             }   
  115.             else if (Convert.ToBoolean(lX4 | lY4))   
  116.             {   
  117.                 if (Convert.ToBoolean(lResult & 0x40000000))   
  118.                 {   
  119.                     lResult = lResult ^ 0xC0000000 ^ lX8 ^ lY8;   
  120.                 }   
  121.                 else   
  122.                 {   
  123.                     lResult = lResult ^ 0x40000000 ^ lX8 ^ lY8;   
  124.                 }   
  125.             }   
  126.             else   
  127.             {   
  128.                 lResult = lResult ^ lX8 ^ lY8;   
  129.             }   
  130.             AddUnsigned = lResult;   
  131.             return AddUnsigned;   
  132.         }   
  133.         private static long md5_F(long x, long y, long z)   
  134.         {   
  135.             long md5_F = 0;   
  136.             md5_F = (x & y) | ((~x) & z);   
  137.             return md5_F;   
  138.         }   
  139.         private static long md5_G(long x, long y, long z)   
  140.         {   
  141.             long md5_G = 0;   
  142.             md5_G = (x & z) | (y & (~z));   
  143.             return md5_G;   
  144.         }   
  145.         private static long md5_H(long x, long y, long z)   
  146.         {   
  147.             long md5_H = 0;   
  148.             md5_H = (x ^ y ^ z);   
  149.             return md5_H;   
  150.         }   
  151.         private static long md5_I(long x, long y, long z)   
  152.         {   
  153.             long md5_I = 0;   
  154.             md5_I = (y ^ (x | (~z)));   
  155.             return md5_I;   
  156.         }   
  157.         private static void md5_FF(ref long a, long b, long c, long d, long x, long s, long ac)   
  158.         {   
  159.             a = AddUnsigned(a, AddUnsigned(AddUnsigned(md5_F(b, c, d), x), ac));   
  160.             a = RotateLeft(a, s);   
  161.             a = AddUnsigned(a, b);   
  162.         }   
  163.         private static void md5_GG(ref long a, long b, long c, long d, long x, long s, long ac)   
  164.         {   
  165.             a = AddUnsigned(a, AddUnsigned(AddUnsigned(md5_G(b, c, d), x), ac));   
  166.             a = RotateLeft(a, s);   
  167.             a = AddUnsigned(a, b);   
  168.         }   
  169.         private static void md5_HH(ref long a, long b, long c, long d, long x, long s, long ac)   
  170.         {   
  171.             a = AddUnsigned(a, AddUnsigned(AddUnsigned(md5_H(b, c, d), x), ac));   
  172.             a = RotateLeft(a, s);   
  173.             a = AddUnsigned(a, b);   
  174.         }   
  175.         private static void md5_II(ref long a, long b, long c, long d, long x, long s, long ac)   
  176.         {   
  177.             a = AddUnsigned(a, AddUnsigned(AddUnsigned(md5_I(b, c, d), x), ac));   
  178.             a = RotateLeft(a, s);   
  179.             a = AddUnsigned(a, b);   
  180.         }   
  181.         private static long[] ConvertToWordArray(string sMessage)   
  182.         {   
  183.             long[] ConvertToWordArray = null;   
  184.             int lMessageLength = 0;   
  185.             int lNumberOfWords = 0;   
  186.             long[] lWordArray = null;   
  187.             int lBytePosition = 0;   
  188.             int lByteCount = 0;   
  189.             int lWordCount = 0;   
  190.             const int MODULUS_BITS = 512;   
  191.             const int CONGRUENT_BITS = 448;   
  192.             lMessageLength = sMessage.Length;   
  193.             lNumberOfWords = (((lMessageLength + ((MODULUS_BITS - CONGRUENT_BITS) / BITS_TO_A_BYTE)) / (MODULUS_BITS / BITS_TO_A_BYTE)) + 1) * (MODULUS_BITS / BITS_TO_A_WORD);   
  194.             lWordArray = new long[lNumberOfWords];   
  195.             lBytePosition = 0;   
  196.             lByteCount = 0;   
  197.             while (lByteCount < lMessageLength)   
  198.             {   
  199.                 lWordCount = lByteCount / BYTES_TO_A_WORD;   
  200.                 lBytePosition = (lByteCount % BYTES_TO_A_WORD) * BITS_TO_A_BYTE;   
  201.                 lWordArray[lWordCount] = lWordArray[lWordCount] | LShift(Convert.ToByte(sMessage.Substring(lByteCount, 1).ToCharArray()[0]), lBytePosition);   
  202.                 lByteCount = lByteCount + 1;   
  203.             }   
  204.             lWordCount = lByteCount / BYTES_TO_A_WORD;   
  205.             lBytePosition = (lByteCount % BYTES_TO_A_WORD) * BITS_TO_A_BYTE;   
  206.             lWordArray[lWordCount] = lWordArray[lWordCount] | LShift(0x80, lBytePosition);   
  207.             lWordArray[lNumberOfWords - 2] = LShift(lMessageLength, 3);   
  208.             lWordArray[lNumberOfWords - 1] = RShift(lMessageLength, 29);   
  209.             ConvertToWordArray = lWordArray;   
  210.             return ConvertToWordArray;   
  211.         }   
  212.         private static string WordToHex(long lValue)   
  213.         {   
  214.             string WordToHex = "";   
  215.             long lByte = 0;   
  216.             int lCount = 0;   
  217.             for (lCount = 0; lCount <= 3; lCount++)   
  218.             {   
  219.                 lByte = RShift(lValue, lCount * BITS_TO_A_BYTE) & m_lOnBits[BITS_TO_A_BYTE - 1];   
  220.                 WordToHex = WordToHex + (("0" + ToHex(lByte)).Substring(("0" + ToHex(lByte)).Length - 2));   
  221.             }   
  222.             return WordToHex;   
  223.         }   
  224.         private static string ToHex(long dec)   
  225.         {   
  226.             string strhex = "";   
  227.             while (dec > 0)   
  228.             {   
  229.                 strhex = tohex(dec % 16) + strhex;   
  230.                 dec = dec / 16;   
  231.             }   
  232.             return strhex;   
  233.         }   
  234.         private static string tohex(long hex)   
  235.         {   
  236.             string strhex = "";   
  237.             switch (hex)   
  238.             {   
  239.                 case 10: strhex = "a"break;   
  240.                 case 11: strhex = "b"break;   
  241.                 case 12: strhex = "c"break;   
  242.                 case 13: strhex = "d"break;   
  243.                 case 14: strhex = "e"break;   
  244.                 case 15: strhex = "f"break;   
  245.                 default: strhex = hex.ToString(); break;   
  246.             }   
  247.             return strhex;   
  248.         }   
  249.   
  250.         public static string Encrypt(string sMessage, int stype)   
  251.         {   
  252.             string MD5 = "";   
  253.             for (int i = 0; i <= 30; i++)   
  254.             {   
  255.                 m_lOnBits = Convert.ToInt64(Math.Pow(2, i + 1) - 1);   
  256.                 m_l2Power = Convert.ToInt64(Math.Pow(2, i));   
  257.             }   
  258.             long[] x = null;   
  259.             int k = 0;   
  260.             long AA = 0;   
  261.             long BB = 0;   
  262.             long CC = 0;   
  263.             long DD = 0;   
  264.             long a = 0;   
  265.             long b = 0;   
  266.             long c = 0;   
  267.             long d = 0;   
  268.             const int S11 = 7;   
  269.             const int S12 = 12;   
  270.             const int S13 = 17;   
  271.             const int S14 = 22;   
  272.             const int S21 = 5;   
  273.             const int S22 = 9;   
  274.             const int S23 = 14;   
  275.             const int S24 = 20;   
  276.             const int S31 = 4;   
  277.             const int S32 = 11;   
  278.             const int S33 = 16;   
  279.             const int S34 = 23;   
  280.             const int S41 = 6;   
  281.             const int S42 = 10;   
  282.             const int S43 = 15;   
  283.             const int S44 = 21;   
  284.             x = ConvertToWordArray(sMessage);   
  285.             a = 0x67452301;   
  286.             b = 0xEFCDAB89;   
  287.             c = 0x98BADCFE;   
  288.             d = 0x10325476;   
  289.             for (k = 0; k < x.Length; k += 16)   
  290.             {   
  291.                 AA = a;   
  292.                 BB = b;   
  293.                 CC = c;   
  294.                 DD = d;   
  295.                 md5_FF(ref a, b, c, d, x[k + 0], S11, 0xD76AA478);   
  296.                 md5_FF(ref d, a, b, c, x[k + 1], S12, 0xE8C7B756);   
  297.                 md5_FF(ref c, d, a, b, x[k + 2], S13, 0x242070DB);   
  298.                 md5_FF(ref b, c, d, a, x[k + 3], S14, 0xC1BDCEEE);   
  299.                 md5_FF(ref a, b, c, d, x[k + 4], S11, 0xF57C0FAF);   
  300.                 md5_FF(ref d, a, b, c, x[k + 5], S12, 0x4787C62A);   
  301.                 md5_FF(ref c, d, a, b, x[k + 6], S13, 0xA8304613);   
  302.                 md5_FF(ref b, c, d, a, x[k + 7], S14, 0xFD469501);   
  303.                 md5_FF(ref a, b, c, d, x[k + 8], S11, 0x698098D8);   
  304.                 md5_FF(ref d, a, b, c, x[k + 9], S12, 0x8B44F7AF);   
  305.                 md5_FF(ref c, d, a, b, x[k + 10], S13, 0xFFFF5BB1);   
  306.                 md5_FF(ref b, c, d, a, x[k + 11], S14, 0x895CD7BE);   
  307.                 md5_FF(ref a, b, c, d, x[k + 12], S11, 0x6B901122);   
  308.                 md5_FF(ref d, a, b, c, x[k + 13], S12, 0xFD987193);   
  309.                 md5_FF(ref c, d, a, b, x[k + 14], S13, 0xA679438E);   
  310.                 md5_FF(ref b, c, d, a, x[k + 15], S14, 0x49B40821);   
  311.                 md5_GG(ref a, b, c, d, x[k + 1], S21, 0xF61E2562);   
  312.                 md5_GG(ref d, a, b, c, x[k + 6], S22, 0xC040B340);   
  313.                 md5_GG(ref c, d, a, b, x[k + 11], S23, 0x265E5A51);   
  314.                 md5_GG(ref b, c, d, a, x[k + 0], S24, 0xE9B6C7AA);   
  315.                 md5_GG(ref a, b, c, d, x[k + 5], S21, 0xD62F105D);   
  316.                 md5_GG(ref d, a, b, c, x[k + 10], S22, 0x2441453);   
  317.                 md5_GG(ref c, d, a, b, x[k + 15], S23, 0xD8A1E681);   
  318.                 md5_GG(ref b, c, d, a, x[k + 4], S24, 0xE7D3FBC8);   
  319.                 md5_GG(ref a, b, c, d, x[k + 9], S21, 0x21E1CDE6);   
  320.                 md5_GG(ref d, a, b, c, x[k + 14], S22, 0xC33707D6);   
  321.                 md5_GG(ref c, d, a, b, x[k + 3], S23, 0xF4D50D87);   
  322.                 md5_GG(ref b, c, d, a, x[k + 8], S24, 0x455A14ED);   
  323.                 md5_GG(ref a, b, c, d, x[k + 13], S21, 0xA9E3E905);   
  324.                 md5_GG(ref d, a, b, c, x[k + 2], S22, 0xFCEFA3F8);   
  325.                 md5_GG(ref c, d, a, b, x[k + 7], S23, 0x676F02D9);   
  326.                 md5_GG(ref b, c, d, a, x[k + 12], S24, 0x8D2A4C8A);   
  327.                 md5_HH(ref a, b, c, d, x[k + 5], S31, 0xFFFA3942);   
  328.                 md5_HH(ref d, a, b, c, x[k + 8], S32, 0x8771F681);   
  329.                 md5_HH(ref c, d, a, b, x[k + 11], S33, 0x6D9D6122);   
  330.                 md5_HH(ref b, c, d, a, x[k + 14], S34, 0xFDE5380C);   
  331.                 md5_HH(ref a, b, c, d, x[k + 1], S31, 0xA4BEEA44);   
  332.                 md5_HH(ref d, a, b, c, x[k + 4], S32, 0x4BDECFA9);   
  333.                 md5_HH(ref c, d, a, b, x[k + 7], S33, 0xF6BB4B60);   
  334.                 md5_HH(ref b, c, d, a, x[k + 10], S34, 0xBEBFBC70);   
  335.                 md5_HH(ref a, b, c, d, x[k + 13], S31, 0x289B7EC6);   
  336.                 md5_HH(ref d, a, b, c, x[k + 0], S32, 0xEAA127FA);   
  337.                 md5_HH(ref c, d, a, b, x[k + 3], S33, 0xD4EF3085);   
  338.                 md5_HH(ref b, c, d, a, x[k + 6], S34, 0x4881D05);   
  339.                 md5_HH(ref a, b, c, d, x[k + 9], S31, 0xD9D4D039);   
  340.                 md5_HH(ref d, a, b, c, x[k + 12], S32, 0xE6DB99E5);   
  341.                 md5_HH(ref c, d, a, b, x[k + 15], S33, 0x1FA27CF8);   
  342.                 md5_HH(ref b, c, d, a, x[k + 2], S34, 0xC4AC5665);   
  343.                 md5_II(ref a, b, c, d, x[k + 0], S41, 0xF4292244);   
  344.                 md5_II(ref d, a, b, c, x[k + 7], S42, 0x432AFF97);   
  345.                 md5_II(ref c, d, a, b, x[k + 14], S43, 0xAB9423A7);   
  346.                 md5_II(ref b, c, d, a, x[k + 5], S44, 0xFC93A039);   
  347.                 md5_II(ref a, b, c, d, x[k + 12], S41, 0x655B59C3);   
  348.                 md5_II(ref d, a, b, c, x[k + 3], S42, 0x8F0CCC92);   
  349.                 md5_II(ref c, d, a, b, x[k + 10], S43, 0xFFEFF47D);   
  350.                 md5_II(ref b, c, d, a, x[k + 1], S44, 0x85845DD1);   
  351.                 md5_II(ref a, b, c, d, x[k + 8], S41, 0x6FA87E4F);   
  352.                 md5_II(ref d, a, b, c, x[k + 15], S42, 0xFE2CE6E0);   
  353.                 md5_II(ref c, d, a, b, x[k + 6], S43, 0xA3014314);   
  354.                 md5_II(ref b, c, d, a, x[k + 13], S44, 0x4E0811A1);   
  355.                 md5_II(ref a, b, c, d, x[k + 4], S41, 0xF7537E82);   
  356.                 md5_II(ref d, a, b, c, x[k + 11], S42, 0xBD3AF235);   
  357.                 md5_II(ref c, d, a, b, x[k + 2], S43, 0x2AD7D2BB);   
  358.                 md5_II(ref b, c, d, a, x[k + 9], S44, 0xEB86D391);   
  359.                 a = AddUnsigned(a, AA);   
  360.                 b = AddUnsigned(b, BB);   
  361.                 c = AddUnsigned(c, CC);   
  362.                 d = AddUnsigned(d, DD);   
  363.             }   
  364.             if (stype == 32)   
  365.             {   
  366.                 MD5 = ((((WordToHex(a)) + (WordToHex(b))) + (WordToHex(c))) + (WordToHex(d))).ToLower();   
  367.             }   
  368.             else   
  369.             {   
  370.                 MD5 = ((WordToHex(b)) + (WordToHex(c))).ToLower();   
  371.             }   
  372.             return MD5;   
  373.         }   
  374.     }   
  375. }   
  

注:以上3、4中对于中文有编码问题,上面的案例为UTF-8编码,2中其实也有编码的问题,但是那个主要是与当前页面的编码有关系,即使用默认编码的方式。 

0 0