如何在Ruby应用程序中匹配C#中Unicode字符串的MD5哈希输出?

时间:2013-09-17 12:37:26

标签: c# ruby unicode

这是c#的代码片段。

byte[] bytes = Encoding.Unicode.GetBytes('test');
byte[] numArray = new byte[0];
numArray = (byte[])null;
using (MD5 md5 = MD5.Create())
numArray = md5.ComputeHash(bytes);

输出:

bytes = [116, 0, 101, 0, 115, 0, 116, 0] 
numArray = [200, 5, 158, 46, 199, 65, 159, 89, 14, 121, 215, 241, 183, 116, 191, 230] 

同样的尝试使用Ruby或Ruby on Rails但面临一些问题 -

ruby​​代码

bytes = "test".bytes.to_a.join(",") + ","
bytes = bytes.gsub(",", "/0/").split("/")
numArray = Digest::MD5.digest(bytes)

输出:

bytes = ["116", "0", "101", "0", "115", "0", "116", "0"]

当我尝试访问Digest :: MD5.digest时,如果我将其转换为字符串,它只接受字符串值我无法获得与提供的C#代码相同的结果。

1 个答案:

答案 0 :(得分:4)

这适用于Ruby 1.9.3及更高版本:

require 'digest/md5'
Digest::MD5.digest( "test".encode( 'UTF-16LE' ) ).bytes.to_a
 => [200, 5, 158, 46, 199, 65, 159, 89, 14, 121, 215, 241, 183, 116, 191, 230]

一些解释:

  • C#(以及一般的Microsoft代码)默认为Unicode字符串的UTF-16LE
  • 使用插入逗号和gsub的字符串修改会让你遇到麻烦,使用Ruby的字符串编码方法。
  • Digest::MD5.digest将读取输入字符串,就好像强制编码为'ASCII-8BIT'(即它只是读取字符串中的字节,因为它们被存储,忽略字符语义),并且还返回数据那个编码。