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