摘要/hmac 是 ruby​​ 标准库的一部分

发布于 2024-08-16 09:07:57 字数 568 浏览 4 评论 0原文

我正在使用一些具有以下功能的代码:

begin
require 'digest/hmac'
USE_EMBEDDED_HMAC = false
rescue
puts "HMAC, not found in standard lib." + $!.message
require 'hmac-sha1'
USE_EMBEDDED_HMAC = true
end


正如我所看到的,至少在 Rails 1.8.6 中它不是标准库的一部分。它是 ruby​​ 1.9 库的一部分吗?如果没有,我应该安装任何gem吗?

请注意,使用 OpenSSL 的解决方案不会被接受,因为它无论如何都会在“require 'digest/hmac'”中失败。

有问题的代码在这里 http://github.com/quetzall/cloud_cache/blob/master/lib/cloud_cache.rb

i'm working with some codes that has a:

begin
require 'digest/hmac'
USE_EMBEDDED_HMAC = false
rescue
puts "HMAC, not found in standard lib." + $!.message
require 'hmac-sha1'
USE_EMBEDDED_HMAC = true
end

As i could see, at least in rails 1.8.6 its not part of the standard lib. Is it part from the ruby 1.9 lib? If not, should i install any gem?

Note that solutions using OpenSSL won't be accepted because it will fail anyway in "require 'digest/hmac'"

The code in question is here http://github.com/quetzall/cloud_cache/blob/master/lib/cloud_cache.rb

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

脸赞 2024-08-23 09:07:57

它在 1.8.7 中可用。试试这个:

ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9]

require 'openssl'
digest  = OpenSSL::Digest::Digest.new('sha1')
OpenSSL::HMAC.digest(digest, "superscret", "Lorem ipsum dolor sit amet")
OpenSSL::HMAC.hexdigest(digest, "superscret", "Lorem ipsum dolor sit amet")

It's available in 1.8.7. Try this:

ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9]

require 'openssl'
digest  = OpenSSL::Digest::Digest.new('sha1')
OpenSSL::HMAC.digest(digest, "superscret", "Lorem ipsum dolor sit amet")
OpenSSL::HMAC.hexdigest(digest, "superscret", "Lorem ipsum dolor sit amet")
〆凄凉。 2024-08-23 09:07:57

来自 1.9.3 文档

警告:不鼓励使用这个库,因为这个实现本来是实验性的,但不知何故进入了 1.9 系列而不被注意到。请改用“openssl”库中的 OpenSSL::HMAC。

From the 1.9.3 docs:

CAUTION: Use of this library is discouraged, because this implementation was meant to be experimental but somehow got into the 1.9 series without being noticed. Please use OpenSSL::HMAC in the “openssl” library instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文