在C#中,可以使用System.Security.Cryptography
命名空間下的MD5
類來實現MD5加密功能。以下是一個示例代碼:
using System;
using System.Security.Cryptography;
using System.Text;
public class MD5Example
{
public static string CalculateMD5Hash(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();
}
}
public static void Main(string[] args)
{
string input = "Hello World";
string hashedInput = CalculateMD5Hash(input);
Console.WriteLine("Input: " + input);
Console.WriteLine("MD5 Hash: " + hashedInput);
}
}
運行代碼后,將輸出以下結果:
Input: Hello World
MD5 Hash: ed076287532e86365e841e92bfc50d8c
這里的CalculateMD5Hash
方法接受一個字符串參數input
,并返回其MD5哈希值。在方法內部,首先創建一個MD5
實例,然后使用ComputeHash
方法計算輸入字符串的MD5哈希值。最后,通過將每個字節轉換為兩位的十六進制字符串,并連接起來,得到最終的哈希值。