在C#中,可以使用System.Security.Cryptography
命名空間中的MD5
類來計算MD5哈希值。以下是一個示例代碼:
using System;
using System.Security.Cryptography;
using System.Text;
public class Program
{
public static void Main(string[] args)
{
string input = "Hello World";
// 創建MD5對象
using (MD5 md5 = MD5.Create())
{
// 將輸入字符串轉換為字節數組
byte[] inputBytes = Encoding.UTF8.GetBytes(input);
// 計算MD5哈希值
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: " + md5Hash);
}
}
}
上述代碼中,首先創建了一個MD5
對象。然后,將輸入字符串轉換為字節數組,并使用ComputeHash
方法計算MD5哈希值。最后,將哈希值轉換為字符串并打印輸出。
運行上述代碼會輸出以下結果:
MD5 Hash: b10a8db164e0754105b7a99be72e3fe5
注意:MD5算法已經被認為是不安全的,因為它容易受到碰撞攻擊。因此,在實際應用中,建議使用更安全的哈希算法,如SHA-256。