这是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 实现但面临一些问题 -
红宝石代码
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# 代码相同的结果。