import { type SubtleCrypto } from "https://deno.land/x/deno@v1.39.0/ext/crypto/lib.deno_crypto.d.ts";
This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto).
Methods
generateKey(): Promise<CryptoKeyPair>
generateKey(): Promise<CryptoKey>
generateKey(): Promise<CryptoKeyPair | CryptoKey>
importKey(): Promise<CryptoKey>
importKey(): Promise<CryptoKey>
format: Exclude<KeyFormat, "jwk">,
keyData: BufferSource,
algorithm: ,
extractable: boolean,
keyUsages: KeyUsage[],
exportKey(format: "jwk", key: CryptoKey): Promise<JsonWebKey>
verify(): Promise<boolean>
algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams,
key: CryptoKey,
signature: BufferSource,
data: BufferSource,
digest(algorithm: AlgorithmIdentifier, data: BufferSource): Promise<ArrayBuffer>
encrypt(): Promise<ArrayBuffer>
decrypt(): Promise<ArrayBuffer>
deriveBits(): Promise<ArrayBuffer>
unwrapKey(): Promise<CryptoKey>
format: KeyFormat,
wrappedKey: BufferSource,
unwrappingKey: CryptoKey,
unwrapAlgorithm: ,
unwrappedKeyAlgorithm: ,
extractable: boolean,
keyUsages: KeyUsage[],
import { SubtleCrypto } from "https://deno.land/x/deno@v1.39.0/ext/crypto/lib.deno_crypto.d.ts";
type
{ readonly prototype: SubtleCrypto; new (): never; }