在C#中實現(xiàn)MD5加密可以通過以下代碼實現(xiàn):
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
方法接收一個字符串輸入,將其轉(zhuǎn)換為字節(jié)數(shù)組并使用MD5.Create()
方法創(chuàng)建一個MD5哈希算法實例。然后,使用ComputeHash
方法計算輸入字節(jié)數(shù)組的MD5哈希值,并將結(jié)果轉(zhuǎn)換為十六進制字符串返回。最后,將MD5哈希值打印出來。