Class: Sandal::Sig::RS384
Overview
The RSA-SHA384 signing algorithm.
Constant Summary collapse
- NAME =
The JWA name of the algorithm.
"RS384"
Instance Attribute Summary
Attributes inherited from RS
Instance Method Summary collapse
-
#initialize(key) ⇒ RS384
constructor
Creates a new instance.
Methods inherited from RS
Constructor Details
permalink #initialize(key) ⇒ RS384
Creates a new instance.
83 84 85 |
# File 'lib/sandal/sig/rs.rb', line 83 def initialize(key) super(NAME, 384, make_key(key)) end |