Class: Sandal::Sig::ES384
Overview
The ECDSA-SHA384 signing algorithm.
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, #ensure_curve, #sign, #valid?
Constructor Details
#initialize(key) ⇒ ES384
Creates a new instance.
122 123 124 125 |
# File 'lib/sandal/sig/es.rb', line 122 def initialize(key) ensure_curve(key, 'secp384r1') super(384, 384, key) end |