class Sandal::Sig::HS512
The HMAC-SHA512 signing algorithm.
Constants
- NAME
The JWA name of the algorithm.
Public Class Methods
new(key)
click to toggle source
Creates a new instance.
@param key [String] The key to use for signing or validation.
Calls superclass method
Sandal::Sig::HS::new
# File lib/sandal/sig/hs.rb, line 80 def initialize(key) super(NAME, 512, key) end