Generated public/private key pair of an asymmetric algorithm.

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

Type Parameters

  • I = any

Hierarchy (View Summary)

Properties

info: I
jwkImportParams: AlgorithmIdentifier
privateKey: CryptoKey
publicKey: CryptoKey
spki: Uint8Array<ArrayBufferLike>