Class: Sandal::Sig::ES384
Overview
The ECDSA-SHA384 signing algorithm.
Constant Summary collapse
- NAME =
The JWA name of the algorithm.
"ES384"
- CURVE_NAME =
The ECDSA curve name.
"secp384r1"
Instance Attribute Summary
Attributes inherited from ES
Instance Method Summary collapse
-
#initialize(key) ⇒ ES384
constructor
Creates a new instance.
Methods inherited from ES
decode_asn1_signature, decode_jws_signature, encode_asn1_signature, encode_jws_signature, #sign, #valid?
Constructor Details
#initialize(key) ⇒ ES384
Creates a new instance.
143 144 145 |
# File 'lib/sandal/sig/es.rb', line 143 def initialize(key) super(NAME, 384, 384, make_key(key, CURVE_NAME)) end |