MD5
散列函数将任意长度的二进制字符串映射到固定长度的小二进制字符串。
所述 MD5
算法是产生 128 位散列值(16 个字节,32 个 Hexdecimal 字符)一种广泛使用的散列函数。
System.Security.Cryptography.MD5
类的 ComputeHash
方法将散列作为 16 字节的数组返回。
例:
using System;
using System.Security.Cryptography;
using System.Text;
internal class Program
{
private static void Main()
{
var source = "Hello World!";
// Creates an instance of the default implementation of the MD5 hash algorithm.
using (var md5Hash = MD5.Create())
{
// Byte array representation of source string
var sourceBytes = Encoding.UTF8.GetBytes(source);
// Generate hash value(Byte Array) for input data
var hashBytes = md5Hash.ComputeHash(sourceBytes);
// Convert hash byte array to string
var hash = BitConverter.ToString(hashBytes).Replace("-", string.Empty);
// Output the MD5 hash
Console.WriteLine("The MD5 hash of " + source + " is: " + hash);
}
}
}
输出: Hello World 的 MD5 哈希值! 是:ED076287532E86365E841E92BFC50D8C
安全问题:
与大多数散列函数一样,MD5 既不是加密也不是编码。它可以通过暴力攻击来逆转,并且遭受针对碰撞和前映像攻击的广泛漏洞。