@gibme/crypto
    Preparing search index...

    Type Alias key_pair_t

    Represents a public/secret key pair

    type key_pair_t = {
        private_key?: string;
        public_key: string;
        secret_key: string;
    }
    Index

    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)