CryptoKeyPair

The CryptoKeyPair dictionary of the Web Crypto API represents a key pair for an asymmetric cryptography algorithm, also known as a public-key algorithm.

interface CryptoKeyPair {
privateKey: CryptoKey;
publicKey: CryptoKey;
}
var CryptoKeyPair: {
readonly prototype: CryptoKeyPair;
new (): never;
}
;

§Properties

§
privateKey: CryptoKey
[src]
§
publicKey: CryptoKey
[src]