Interface CryptoKey

    The CryptoKey dictionary of the Web Crypto API represents a cryptographic key. Available only in secure contexts.

    MDN Reference

    interface CryptoKey {
        algorithm: KeyAlgorithm;
        extractable: boolean;
        type: KeyType;
        usages: KeyUsage[];
    }

    Properties

    algorithm: KeyAlgorithm
    extractable: boolean
    type: KeyType
    usages: KeyUsage[]