在C#中,可以使用System.Security.Cryptography
命名空间中的MD5
类来将字符串转换为MD5哈希值。下面是一个简单的示例代码:
using System; using System.Security.Cryptography; using System.Text; class Program { static void Main() { string input = "Hello, World!"; 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")); } string md5Hash = sb.ToString(); Console.WriteLine("MD5 Hash of '{0}': {1}", input, md5Hash); } } }
在上面的示例中,我们首先创建一个MD5
对象,然后将字符串转换为字节数组,再使用ComputeHash
方法计算MD5哈希值。最后,我们将哈希值转换为十六进制字符串并输出结果。