gpt4 book ai didi

hmac - 如何在 Crystal-lang 中创建 HMAC

转载 作者:行者123 更新时间:2023-12-01 00:23:20 25 4
gpt4 key购买 nike

OpenSSL::HMAC documentation .

我正在尝试这个:

require "openssl"

puts OpenSSL::HMAC.hexdigest(:sha256, "secret key", "data")

我收到此错误:

undefined constant OpenSSL::HMAC



其他 OpenSSL 方法工作正常,例如 OpenSSL::Digest.new("SHA256") .

我究竟做错了什么?

最佳答案

require "openssl" you don't require hmac .这对我有用:

require "openssl/hmac"

puts OpenSSL::HMAC.hexdigest(:sha256, "secret key", "data")

关于hmac - 如何在 Crystal-lang 中创建 HMAC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46870352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com