在C#中,可以使用System.Security.Cryptography
命名空間中的MD5CryptoServiceProvider
類來實現MD5加密。以下是一個示例代碼:
using System;
using System.Security.Cryptography;
using System.Text;
class Program
{
static void Main()
{
string originalText = "Hello, World!";
using (MD5 md5 = MD5.Create())
{
byte[] inputBytes = Encoding.ASCII.GetBytes(originalText);
byte[] hashBytes = md5.ComputeHash(inputBytes);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < hashBytes.Length; i++)
{
sb.Append(hashBytes[i].ToString("x2")); // x2表示以16進制形式輸出
}
string encryptedText = sb.ToString();
Console.WriteLine("Original Text: {0}", originalText);
Console.WriteLine("Encrypted Text: {0}", encryptedText);
}
}
}
輸出結果:
Original Text: Hello, World!
Encrypted Text: ed076287532e86365e841e92bfc50d8c
在上述代碼中,首先創建一個MD5
實例,然后將要加密的原始文本轉換為字節數組,并使用ComputeHash
方法計算MD5哈希值。最后,將哈希值轉換為十六進制字符串并輸出。