Generated public/private key pair of an asymmetric algorithm.

interface GeneratedKeyPair<I> {
    info: I;
    jwkImportParams: AlgorithmIdentifier;
    privateKey: CryptoKey;
    publicKey: CryptoKey;
    spki: Uint8Array;
}

Type Parameters

  • I = any

Hierarchy (view full)

Properties

info: I
jwkImportParams: AlgorithmIdentifier
privateKey: CryptoKey
publicKey: CryptoKey
spki: Uint8Array