deno / 1.23.2 / ~ / cryptokey.html /

CryptoKey

The CryptoKey dictionary of the Web Crypto API represents a cryptographic key.

interface CryptoKey {
readonly algorithm : KeyAlgorithm;
readonly extractable : boolean;
readonly type : KeyType;
readonly usages : KeyUsage[];
}
var CryptoKey : {
prototype: CryptoKey;
new (): CryptoKey;
}
;

Properties

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

© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/CryptoKey