Class: Sandal::Sig::HS512
Overview
The HMAC-SHA512 signing algorithm.
Constant Summary collapse
- NAME =
The JWA name of the algorithm.
"HS512"
Instance Attribute Summary
Attributes inherited from HS
Instance Method Summary collapse
-
#initialize(key) ⇒ HS512
constructor
Creates a new instance.
Methods inherited from HS
Constructor Details
permalink #initialize(key) ⇒ HS512
Creates a new instance.
80 81 82 |
# File 'lib/sandal/sig/hs.rb', line 80 def initialize(key) super(NAME, 512, key) end |