diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-01-14 14:18:53 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 14:18:53 +0530 |
commit | 919ded1a0b3439ef0d2d3134603bf5840ea0a170 (patch) | |
tree | 9ce91bff89b9e3c525f357b4e4b686d5f4edbff0 /ext/crypto/lib.deno_crypto.d.ts | |
parent | eda6e58520276786bd87e411d0284eb56d9686a6 (diff) |
feat(ext/crypto): implement AES-GCM decryption (#13319)
Diffstat (limited to 'ext/crypto/lib.deno_crypto.d.ts')
-rw-r--r-- | ext/crypto/lib.deno_crypto.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/crypto/lib.deno_crypto.d.ts b/ext/crypto/lib.deno_crypto.d.ts index f17c1f582..1f16beb04 100644 --- a/ext/crypto/lib.deno_crypto.d.ts +++ b/ext/crypto/lib.deno_crypto.d.ts @@ -264,6 +264,7 @@ interface SubtleCrypto { | AlgorithmIdentifier | RsaOaepParams | AesCbcParams + | AesGcmParams | AesCtrParams, key: CryptoKey, data: BufferSource, |