deno.com
method SubtleCrypto.decrypt
#SubtleCrypto.decrypt(): Promise<ArrayBuffer>

Decrypts previously encrypted data using a cryptographic key.

Examples #

#
await crypto.subtle.decrypt("RSA-OAEP", key, data);

Parameters #

Return Type #

Promise<ArrayBuffer>

See #