十六进制表示问题

时间:2012-01-04 07:59:15

标签: c# asp.net encoding hash ripemd

如果我想要以下结果:

RIPEMD-160("The quick brown fox jumps over the lazy dog") =
 37f332f68db77bd9d7edd4969571ad671cf9dd3b

我试过了:

string hash11 = System.Text.Encoding.ASCII.GetString(RIPEMD.ComputeHash(Encoding.ASCII.GetBytes("The quick brown fox jumps over the lazy dog")));

但它没有给我以前的结果!

2 个答案:

答案 0 :(得分:1)

ComputeHash函数为您提供一个字节数组,其中包含值(0x37,0xF3,...)。如果使用GetString,它将获取字节中的每个值并使用具有该值的字符,它不会将值转换为字符串。

您可以将其转换为:

var bytes = RIPEMD.ComputeHash(Encoding.ASCII.GetBytes("The quick brown fox jumps over the lazy dog"));
string hash11 = "";
foreach(var curByte in bytes)
    hash11 = curByte.ToString("X2") + hash11; // or curByte.ToString("X") if for example 9 should not get 09

就像你开头有最高字节一样。与

hash11 += curByte.ToString("X2")

开头有最低字节。

答案 1 :(得分:1)

您想要获得的是字节数组的十六进制表示:每个字节应由其两个字符的十六进制值表示。

您可以查看this thread有关如何执行此操作的几个不同示例。