Package-level declarations
Types
Link copied to clipboard
Represents a pair of Ed25519 private and public keys.
Link copied to clipboard
class Ed25519PrivateKey(nativeValue: ByteArray) : PrivateKey, SignableKey, StorableKey, ExportableKey
Represents a private key for the Ed25519 algorithm.
Link copied to clipboard
class Ed25519PublicKey(nativeValue: ByteArray) : PublicKey, VerifiableKey, StorableKey, ExportableKey
Represents an Ed25519 public key.
Link copied to clipboard
Link copied to clipboard
Represents a key pair consisting of a private key and public key.
Link copied to clipboard
class Secp256k1PrivateKey(nativeValue: ByteArray) : PrivateKey, SignableKey, StorableKey, ExportableKey, DerivableKey
The Secp256k1PrivateKey
class represents a private key that uses the secp256k1 elliptic curve. It extends the PrivateKey
class and implements the SignableKey
, StorableKey
, ExportableKey
, and DerivableKey
interfaces.
Link copied to clipboard
class Secp256k1PublicKey(nativeValue: ByteArray) : PublicKey, VerifiableKey, StorableKey, ExportableKey
Represents a public key in the Secp256k1 elliptic curve algorithm.
Link copied to clipboard
Represents a pair of X25519 private and public keys.
Link copied to clipboard
Represents a private key for the X25519 elliptic curve.
Link copied to clipboard
Class representing a public key for the X25519 curve.