在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哈希值。最后,我們將哈希值轉換為十六進制字符串并輸出結果。