溫馨提示×

c#中md5加密實(shí)現(xiàn)的方法是什么

c#
小億
89
2024-01-25 17:31:34
欄目: 編程語言

在C#中,可以使用System.Security.Cryptography.MD5類來實(shí)現(xiàn)MD5加密。以下是一個(gè)示例代碼:

using System;
using System.Security.Cryptography;
using System.Text;

public class Program
{
    public static void Main(string[] args)
    {
        string input = "Hello World!";
        string encrypted = GetMd5Hash(input);
        
        Console.WriteLine("MD5 Encrypted: " + encrypted);
    }
    
    public 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();
        }
    }
}

此示例將字符串"Hello World!"使用MD5加密,并輸出MD5加密結(jié)果。在GetMd5Hash方法中,首先創(chuàng)建一個(gè)MD5實(shí)例,然后將輸入字符串轉(zhuǎn)換為字節(jié)數(shù)組。使用md5.ComputeHash方法計(jì)算哈希值,并使用StringBuilder將哈希值轉(zhuǎn)換為十六進(jìn)制字符串。最后返回加密后的字符串。

0