我已经尝试了可以在网络上找到的每个示例,但我无法让我的 .NET 代码从我的 VB6 应用程序中生成相同的 MD5 哈希结果。
VB6 应用程序产生与该站点相同的结果: http ://www.functions-online.com/md5.html
但是对于 C# 中的相同输入,我无法获得相同的结果(使用 MD5.ComputeHash 方法或 FormsAuthentication 加密方法)
请帮忙!!!!
根据要求,这是一些代码。这是直接从 MSDN 中提取的:
public string hashString(string input)
{
// Create a new instance of the MD5CryptoServiceProvider object.
MD5 md5Hasher = MD5.Create();
// Convert the input string to a byte array and compute the hash.
byte[] data = md5Hasher.ComputeHash(Encoding.Default.GetBytes(input));
// Create a new Stringbuilder to collect the bytes
// and create a string.
StringBuilder sBuilder = new StringBuilder();
// Loop through each byte of the hashed data
// and format each one as a hexadecimal string.
for (int i = 0; i < data.Length; i++)
{
sBuilder.Append(data[i].ToString("x2"));
}
// Return the hexadecimal string.
return sBuilder.ToString();
}
我的测试字符串是:
QWERTY123测试
这段代码的结果是:
8c31a947080131edeaf847eb7c6fcad5
测试 MD5 的结果是:
f6ef5dc04609664c2875895d7da34eb9
注意:TestMD5 的结果是我所期待的
注意:我真的非常非常愚蠢,抱歉 - 刚刚意识到我输入错误。一旦我对其进行硬编码,它就起作用了。谢谢您的帮助