Interface key_pair_t

Represents a public/secret key pair

interface key_pair_t {
    private_key?: string;
    public_key: string;
    secret_key: string;
}

Properties

private_key?: string

The ED25519 private key per RFC-8032 (only returned when generating child keys)

public_key: string

The public key

secret_key: string

The secret key (scalar)