使用Ruby的md5复制PHP 5中的md5 raw_output标志(原始字节)

时间:2010-01-07 04:40:11

标签: php ruby encryption hash

由于荒谬的SOAP身份验证方案,我需要使用其他一些参数md5哈希API密钥。不幸的是,提供的唯一示例代码是用PHP编写的,并且由于我发现不可思议的原因,它要求md5哈希使用PHP中的可选raw_output标志(http://php.net/manual/en/function.md5.php),这会导致它返回二进制(我必须返回base64编码)。

我的应用程序是用Ruby编写的,如果我不需要,我不想将这部分推迟到PHP文件中。但是,我似乎无法找到如何让Ruby以二进制形式返回哈希值。当我在PHP中正常散列时,输出与我的Ruby输出匹配,但这不是他们要求的。

PHP:

<?php
  $encode = "test";
  echo md5($encode); // 098f6bcd4621d373cade4e832627b4f6
  echo "\n";
  // PHP5 - md5 with raw_output flag set to true - what I need to mimic in Ruby
  echo md5($encode, true); // binary that looks something like: ?k?F!?s??N?&'??
  echo "\n";
?>

红宝石:

require 'digest/md5'
encode = "test"
puts Digest::MD5.hexdigest(encode) # 098f6bcd4621d373cade4e832627b4f6

感谢任何帮助。

1 个答案:

答案 0 :(得分:8)

只需使用digest代替hexdigest

puts Digest::MD5.digest(encode)