亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c#中md5加密怎么實現

c#
小億
83
2024-04-19 10:10:11
欄目: 編程語言

在C#中實現MD5加密可以通過以下代碼實現:

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方法接收一個字符串輸入,將其轉換為字節數組并使用MD5.Create()方法創建一個MD5哈希算法實例。然后,使用ComputeHash方法計算輸入字節數組的MD5哈希值,并將結果轉換為十六進制字符串返回。最后,將MD5哈希值打印出來。

0
镇沅| 阿克陶县| 天柱县| 威信县| 集安市| 崇义县| 武宁县| 商河县| 镇平县| 资源县| 江门市| 瓦房店市| 通河县| 永济市| 洛浦县| 正宁县| 贵州省| 南通市| 东辽县| 黑山县| 金堂县| 汾阳市| 龙海市| 厦门市| 来安县| 宜丰县| 诸暨市| 云林县| 黔西县| 什邡市| 吉安县| 海兴县| 习水县| 平度市| 平罗县| 广东省| 宁河县| 凤凰县| 财经| 婺源县| 裕民县|