Method: Sandal::Sig::ES384#initialize

Defined in:
lib/sandal/sig/es.rb

#initialize(key) ⇒ ES384

Creates a new instance.

Parameters:

  • key (OpenSSL::PKey::EC or String)

    The key to use for signing (private) or validation (public). If the value is a String then it will be passed to the constructor of the EC class.

Raises:

  • (ArgumentError)

    The key is not in the “secp384r1” group.

[View source]

143
144
145
# File 'lib/sandal/sig/es.rb', line 143

def initialize(key)
  super(NAME, 384, 384, make_key(key, CURVE_NAME))
end