3
請參閱OpenSSL::HMAC documentation。如何在crystal-lang中創建HMAC
我想這一點:
require "openssl"
puts OpenSSL::HMAC.hexdigest(:sha256, "secret key", "data")
和我收到此錯誤:
undefined constant OpenSSL::HMAC
其他OpenSSL的方法做工精細,像OpenSSL::Digest.new("SHA256")
。
我在做什麼錯?