| CURVE-SECP256R1 -> any | Named constant for the "secp256r1" curve. |
|---|---|
| CURVE-SECP384R1 -> any | Named constant for the "secp384r1" curve. |
| CURVE-SECP521R1 -> any | Named constant for the "secp521r1" curve. |
| SHA-1 -> any | Produces a 20-byte digest. |
| SHA-256 -> any | Produces a 32-byte digest. |
| SHA-384 -> any | Produces a 48-byte digest. |
| SHA-512 -> any | Produces a 64-byte digest. |
| parse-private key/Data --password/string= -> EcKey | Parses an EC private key and stores it as DER. |
| parse-public key/Data -> EcKey | Parses an EC public key and stores it as DER. |
class Pin:
number/int
constructor .number:
operator == other:
if other is not Pin: return false
return number == other.number
hash-code method. That is, if a class has a hash-code member, then the equality and hash-code must agree. If two instances are equal (a == b), then their hash codes must also be equal (a.hash-code == b.hash-code).