c#中md5加密怎么实现

avatar
作者
筋斗云
阅读量:0

在C#中实现MD5加密可以通过以下代码实现:

using System; using System.Security.Cryptography; using System.Text;  class Program {     static void Main()     {         string input = "Hello, world!";         string md5Hash = GetMD5Hash(input);                  Console.WriteLine("MD5 Hash: " + md5Hash);     }      static string GetMD5Hash(string input)     {         using (MD5 md5 = MD5.Create())         {             byte[] inputBytes = Encoding.UTF8.GetBytes(input);             byte[] hashBytes = md5.ComputeHash(inputBytes);              StringBuilder sb = new StringBuilder();             for (int i = 0; i < hashBytes.Length; i++)             {                 sb.Append(hashBytes[i].ToString("X2"));             }              return sb.ToString();         }     } } 

在上面的示例中,GetMD5Hash方法接收一个字符串输入,将其转换为字节数组并使用MD5.Create()方法创建一个MD5哈希算法实例。然后,使用ComputeHash方法计算输入字节数组的MD5哈希值,并将结果转换为十六进制字符串返回。最后,将MD5哈希值打印出来。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!