Class: Sandal::Sig::ES256
Overview
The ECDSA-SHA256 signing algorithm.
Constant Summary collapse
- NAME =
The JWA name of the algorithm.
"ES256"
- CURVE_NAME =
The ECDSA curve name.
"prime256v1"
Instance Attribute Summary
Attributes inherited from ES
Instance Method Summary collapse
-
#initialize(key) ⇒ ES256
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) ⇒ ES256
Creates a new instance.
124 125 126 |
# File 'lib/sandal/sig/es.rb', line 124 def initialize(key) super(NAME, 256, 256, make_key(key, CURVE_NAME)) end |