From 0520ae62dd2f4e61287315bbfcd548864d46da45 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Mon, 13 Sep 2021 02:32:49 +0530 Subject: fix(ext/crypto): add HkdfParams and Pkdf2Params types (#11991) --- ext/crypto/lib.deno_crypto.d.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'ext') diff --git a/ext/crypto/lib.deno_crypto.d.ts b/ext/crypto/lib.deno_crypto.d.ts index a62e69632..5a554015a 100644 --- a/ext/crypto/lib.deno_crypto.d.ts +++ b/ext/crypto/lib.deno_crypto.d.ts @@ -109,6 +109,18 @@ interface RsaKeyAlgorithm extends KeyAlgorithm { publicExponent: Uint8Array; } +interface HkdfParams extends Algorithm { + hash: HashAlgorithmIdentifier; + info: BufferSource; + salt: BufferSource; +} + +interface Pbkdf2Params extends Algorithm { + hash: HashAlgorithmIdentifier; + iterations: number; + salt: BufferSource; +} + /** The CryptoKey dictionary of the Web Crypto API represents a cryptographic key. */ interface CryptoKey { readonly algorithm: KeyAlgorithm; @@ -194,6 +206,11 @@ interface SubtleCrypto { key: CryptoKey, data: BufferSource, ): Promise; + deriveBits( + algorithm: AlgorithmIdentifier | HkdfParams | Pbkdf2Params, + baseKey: CryptoKey, + length: number, + ): Promise; } declare interface Crypto { -- cgit v1.2.3