3

我有这个函数,我试图将它转换为 ruby​​ 1.9.3(用于 rails 3.2.13 上的 ruby​​),但我无法获得这个 php 函数返回的相同哈希值。

到目前为止,这是我在 ruby​​ 中使用的:

keypair = OpenSSL::PKey::RSA.new(File.open(Rails.root.join('sec', 'private_key.pem')))
@encrypted_string = keypair.sign(OpenSSL::Digest::MD5.new, @data)
@encrypted_string = Base64.encode64(@encrypted_string)

这是php中的函数:

function SignData($text, $privateKeyFile) {

$private_cert = $privateKeyFile;     
$f = fopen($private_cert,"r");  

if($f)
  $private_key = fread( $f, filesize($private_cert) );    
else
  return "";    
fclose($f);    
$private_key = openssl_get_privatekey($private_key);         
if(openssl_private_encrypt(md5($text), $crypt_text, $private_key))
{     
   base64_url_encode($crypt_text) . "\n";   
}   
  return "";   
}

这是 php 中返回的哈希值:

xJCl3YZVEkXjt_pTPHl9FjpebpDcdMtgZzGFo0LsO_PFyQ8lwdUpKxR_XhK1DGfywVr4-hPxtDqSOHMcp7fM-eYK5GqGVasUh80qRiVLjw6Zeh4NPCk1qxsSm4X3gl0sv13dBb5FWNvDwV6QcLyo7

这是我在红宝石中得到的:

DTilW98pHOep/5qc7H+iBYPdbFNZGKWW0c0XFo5YfrWfqKLPzzLTygRQAiFY whVX8+I0FYAOg3+QqyH0jpcGaFbSVQefU7gDIfT+tHKqSCKmLZwVQas5SQ3j o+m8V+iv/ZgGuHD0U8dNZwO4jvxqb7MPE

也许我需要删除 .pem 文件中的页眉和页脚?

4

1 回答 1

1

为方便起见:

这已经为 OP 完成了:

private_key_file = File.open(Rails.root.join('sec', 'private_key.pem'))
private_key = OpenSSL::PKey::RSA.new(File.read(private_key_file))
digest = Digest::MD5.hexdigest(@data)
@encrypted_string = private_key.private_encrypt(digest)
@encrypted_string = Base64.encode64(@encrypted_string)
于 2013-10-01T13:59:15.173 回答