ASP.NET 產生 MD5 Hash 方法

 
ASP.NET 產生 MD5 Hash 方法
 

   Form1.aspx.cs
 
   using System;
 
   public string CreateMD5Hash(string input)
   {
 
      System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create();
      byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(input);
      byte[] hashBytes = md5.ComputeHash(inputBytes);
 
      System.Text.StringBuilder sb = new System.Text.StringBuilder();
 
      for (int i = 0; i < hashBytes.Length; i++)
      {
         sb.Append(hashBytes[i].ToString("X2"));
      }
 
      return sb.ToString();
 
   }