如何在 Ruby 中以十六进制执行 Triple DES 计算?
我正在尝试在 Ruby 中进行三重 DES 加密。我正在尝试复制此页面的结果:http://da.nmilne.com/des。 html
我正在尝试在 Ruby 中复制这些结果。我怀疑问题是密钥应该是一个字符串,但我需要传入一个十六进制密钥。要么是加密的字符串格式错误。或者也许两者兼而有之。 :-)
require 'openssl'
des = OpenSSL::Cipher::Cipher.new("des-ede-cbc")
des.encrypt
des.key="23232323232323234545454545454545"
des.update("0000000000000000")
res=des.final
res.unpack('H*')
=> ["5045c5d37ca4d13b"]
但应该是:
=> ["3a42d7a1d1c60c40"]
有任何关于我哪里出错的指示吗?
- 此处记录了不同的 3DES 算法: http://www.openssl.org/docs/apps /enc.html
- 为清楚起见进行了编辑
I'm trying to do some triple DES encryption in Ruby. I'm trying to replicate the results from this page: http://da.nmilne.com/des.html
I'm trying to replicate those result in Ruby. I suspect the problem is the key is supposed to be a string, but I need to pass in a Hexadecimal key. Either that or the string being encrypted is in the wrong format. Or maybe both. :-)
require 'openssl'
des = OpenSSL::Cipher::Cipher.new("des-ede-cbc")
des.encrypt
des.key="23232323232323234545454545454545"
des.update("0000000000000000")
res=des.final
res.unpack('H*')
=> ["5045c5d37ca4d13b"]
But it should be:
=> ["3a42d7a1d1c60c40"]
Any pointers on where I'm going wrong?
- Different 3DES algorithms are documented here: http://www.openssl.org/docs/apps/enc.html
- Edited for clarity
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
密钥是十六进制的 - 如果您查看粘贴的 Java 页面,您可以通过解码详细输出中密钥的二进制值轻松看到这一点。
The key is in hex - if you look at the Java page you pasted you can see that easily by decoding the binary values for the key in the detailed output.