可以使用 Microsoft .NET 框架中的
System.Security.Cryptography 类方便地计算源数据的哈希值。 本文演示如何获得哈希值以及如何比较两个哈希值以检验它们是否相等。
要求
下表概括了推荐使用的硬件、软件、网络架构以及所需的 Service Pack:- Microsoft Windows 2000 Professional、Windows 2000 Server、Windows 2000 Advanced Server 或 Windows NT 4.0 Server
- Microsoft Visual C# .NET
计算哈希值
可以使用 System.Security.Cryptography 名称空间中包含的加密资源方便地生成和比较哈希值。 因为所有哈希函数的输入类型都是 Byte[],所以必须先将源数据转换为字节数组后再计算哈希值。 若要为一个字符串值创建哈希值,请按照下列步骤操作:- 打开 Visual Studio .NET。
- 在 Microsoft C# 中新建控制台应用程序。Visual C# .NET 为您创建一个公用类以及一个空的 Main() 方法。
- 对 System、System.Security.Cryptography 和 System.Text 名称空间使用 using 指令,这样,在后面的代码中就不需要限定这些名称空间中的声明了。这些语句必须放在所有其他声明之前。
using System; using System.Security.Cryptography; using System.Text;
- 声明一个字符串变量以存放源数据,并声明两个字节数组(未定义大小)分别存放源字节和得出的哈希值。
string sSourceData; byte[] tmpSource; byte[] tmpHash;
- 使用 GetBytes() 方法(它是 System.Text.ASCIIEncoding 类的成员)将源字符串转换为字节数组(这是哈希函数要求的输入类型)。
sSourceData = "MySourceData"; //Create a byte array from source data. tmpSource = ASCIIEncoding.ASCII.GetBytes(sSourceData);
- 通过在 MD5CryptoServiceProvider 类的一个实例上调用 ComputeHash 方法,来计算源数据的 MD5 哈希值。 注意,若要计算另一哈希值,需要另创建一个该类的实例。
//Compute hash based on source data. tmpHash = new MD5CryptoServiceProvider().ComputeHash(tmpSource);
- 此时,tmpHash 字节数组中存放了计算源数据得出的哈希值(128 位值 = 16 个字节)。 通常,将此类值显示或存储为一个十六进制字符串是非常有用的,如以下代码所示:
Console.WriteLine(ByteArrayToString(tmpHash)); static string ByteArrayToString(byte[] arrInput) { int i; StringBuilder sOutput = new StringBuilder(arrInput.Length); for (i=0;i < arrInput.Length -1; i++) { sOutput.Append(arrInput[i].ToString("X2")); } return sOutput.ToString(); }
- 保存并运行代码,以查看计算源数值得出的十六进制字符串。
比较两个哈希值
从源数据创建哈希值的目的之一是,提供一种方法查看数据经过一段时间后是否会发生改变,或者在不使用实际值的情况下比较两个值。 两种情况都需要比较两个哈希计算值,如果两个值都存储为十六进制字符串,则比较起来非常方便(如上一节中的最后一步所示)。 但是,两个值很有可能都采用字节数组的形式。 以下代码(继上一节中创建的代码)演示了如何比较两个字节数组。- 创建完十六进制字符串后,紧接着基于新的源数据创建一个新的哈希值。
sSourceData = "NotMySourceData"; tmpSource = ASCIIEncoding.ASCII.GetBytes(sSourceData); byte[] tmpNewHash; tmpNewHash = new MD5CryptoServiceProvider().ComputeHash(tmpSource);
- 比较两个字节数组的最直接的方法是,使用循环语句逐一比较两个值中对应的数组元素。 如果任何元素不同,或者两个数组的长度不同,则两个值不相等。
bool bEqual = false; if (tmpNewHash.Length == tmpHash.Length) { int i=0; while ((i < tmpNewHash.Length) && (tmpNewHash[i] == tmpHash[i])) { i += 1; } if (i == tmpNewHash.Length) { bEqual = true; } } if (bEqual) Console.WriteLine("The two hash values are the same"); else Console.WriteLine("The two hash values are not the same"); Console.ReadLine();
- 保存并运行项目,查看从第一个哈希值创建的十六进制字符串,然后检查新的哈希值与原值是否相等。
完整代码列表
using System; using System.Security.Cryptography; using System.Text; namespace ComputeAHash_csharp { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { static void Main(string[] args) { string sSourceData; byte[] tmpSource; byte[] tmpHash; sSourceData = "MySourceData"; //Create a byte array from source data tmpSource = ASCIIEncoding.ASCII.GetBytes(sSourceData); //Compute hash based on source data tmpHash = new MD5CryptoServiceProvider().ComputeHash(tmpSource); Console.WriteLine(ByteArrayToString(tmpHash)); sSourceData = "NotMySourceData"; tmpSource = ASCIIEncoding.ASCII.GetBytes(sSourceData); byte[] tmpNewHash; tmpNewHash = new MD5CryptoServiceProvider().ComputeHash(tmpSource); bool bEqual = false; if (tmpNewHash.Length == tmpHash.Length) { int i=0; while ((i < tmpNewHash.Length) && (tmpNewHash[i] == tmpHash[i])) { i += 1; } if (i == tmpNewHash.Length) { bEqual = true; } } if (bEqual) Console.WriteLine("The two hash values are the same"); else Console.WriteLine("The two hash values are not the same"); Console.ReadLine(); } static string ByteArrayToString(byte[] arrInput) { int i; StringBuilder sOutput = new StringBuilder(arrInput.Length); for (i=0;i < arrInput.Length -1; i++) { sOutput.Append(arrInput[i].ToString("X2")); } return sOutput.ToString(); } } } 注:本文摘抄自微软帮助与支持