Interface for the ED25519 key pair.

interface KeyPairED25519 {
    passphrase: string;
    privateKey: string;
    publicKey: string;
}

Properties

passphrase: string

The passphrase.

privateKey: string

The private key.

publicKey: string

The public key.