class Ronin::Support::Crypto::Key::EC

Represents an EC key.

## Examples

### List supported curves

Crypto::Key::EC.supported_curves
# => ["secp224r1", "secp256k1", "secp384r1", "secp521r1", "prime256v1"]

### Generate a random key

ec = Crypto::Key::EC.random("secp224r1")

@see rubydoc.info/stdlib/openssl/OpenSSL/PKey/EC.html

@since 1.0.0

@api public