在C#中實現MD5加密,可以使用System.Security.Cryptography命名空間中的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.ASCII.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 hash = sb.ToString();
Console.WriteLine("MD5 hash of '{0}': {1}", input, hash);
}
}
}
以上代碼將字符串"Hello, world!"進行MD5加密,并輸出加密后的結果。在實際應用中,可以將加密后的結果存儲到數據庫中或者用于數據傳輸驗證等場景。