Interface IKeyPair

Structure of asymmetric key pair

interface IKeyPair {
    privateKey: PrivateKey;
    publicKey: PublicKey;
}

Properties

privateKey: PrivateKey
publicKey: PublicKey

Generated using TypeDoc