4

我已经尝试了可以​​在网络上找到的每个示例,但我无法让我的 .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 的结果是我所期待的

注意:我真的非常非常愚蠢,抱歉 - 刚刚意识到我输入错误。一旦我对其进行硬编码,它就起作用了。谢谢您的帮助

4

2 回答 2

16

这是我知道有效的 C# MD5 方法,我用它通过不同的 web RESTful API 进行身份验证

   public static string GetMD5Hash(string input)
    {
        System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider();
        byte[] bs = System.Text.Encoding.UTF8.GetBytes(input);
        bs = x.ComputeHash(bs);
        System.Text.StringBuilder s = new System.Text.StringBuilder();
        foreach (byte b in bs)
        {
            s.Append(b.ToString("x2").ToLower());
        }
        return s.ToString();

    }
于 2009-08-10T17:05:24.877 回答
1

是什么让“functions-online”网站 ( http://www.functions-online.com/md5.html ) 成为 MD5 的权威?对我来说,它只适用于 ISO-8859-1。但是当我尝试将 ISO-8859-1 以外的任何内容粘贴到其中时,它会返回相同的 MD5 哈希。单独尝试西里尔大写字母 B,代码点 0x412。或者试试韩文水的符号,代码点 0x98A8。据我所知,发布的 C# 小程序是正确的。

于 2009-08-19T22:16:27.827 回答