中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c#中md5加密實現的方法是什么

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

在C#中,可以使用System.Security.Cryptography.MD5類來實現MD5加密。以下是一個示例代碼:

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加密結果。在GetMd5Hash方法中,首先創建一個MD5實例,然后將輸入字符串轉換為字節數組。使用md5.ComputeHash方法計算哈希值,并使用StringBuilder將哈希值轉換為十六進制字符串。最后返回加密后的字符串。

0
阿克苏市| 乐清市| 霞浦县| 昌黎县| 车险| 阿克苏市| 沙洋县| 永嘉县| 葵青区| 镇康县| 舒兰市| 张掖市| 铜陵市| 汉阴县| 山阴县| 双鸭山市| 盐亭县| 贺兰县| 浦江县| 聊城市| 天峨县| 海南省| 上林县| 剑河县| 登封市| 石棉县| 通山县| 南安市| 陵川县| 民和| 常山县| 安阳市| 灵石县| 姚安县| 洞头县| 西吉县| 黄石市| 贺兰县| 涿鹿县| 贵州省| 赤城县|