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

Wraps (encrypts) a cryptographic key for secure storage or transmission

Examples #

#
await crypto.subtle.wrapKey("jwk", key, wrappingKey, "RSA-OAEP");

Parameters #

Return Type #

Promise<ArrayBuffer>

See #