diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2021-09-12 02:19:53 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-11 16:49:53 -0400 |
commit | 40c63d1255642b8d70d7b5ce5b85a50f6af8a00d (patch) | |
tree | abdfe6e1df461b3d8106fc3c75a7c879cd9381a2 /ext/crypto/lib.deno_crypto.d.ts | |
parent | d236f432b86de55c6006778b0c68fe60b6419069 (diff) |
feat(ext/crypto): verify ECDSA signatures (#11739)
Diffstat (limited to 'ext/crypto/lib.deno_crypto.d.ts')
-rw-r--r-- | ext/crypto/lib.deno_crypto.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/crypto/lib.deno_crypto.d.ts b/ext/crypto/lib.deno_crypto.d.ts index 5169e5c3b..a62e69632 100644 --- a/ext/crypto/lib.deno_crypto.d.ts +++ b/ext/crypto/lib.deno_crypto.d.ts @@ -175,7 +175,7 @@ interface SubtleCrypto { data: BufferSource, ): Promise<ArrayBuffer>; verify( - algorithm: AlgorithmIdentifier | RsaPssParams, + algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource, |