From: Martin Kaesberger Date: Sun, 14 Dec 2025 15:29:17 +0000 (+0100) Subject: Types: fixed CipherAlgorithm and Pbkdf2Params X-Git-Tag: 0.9.5~6 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=5a2650f31e5f67984c4066861a94cc6460712f21;p=njs.git Types: fixed CipherAlgorithm and Pbkdf2Params --- diff --git a/ts/njs_webcrypto.d.ts b/ts/njs_webcrypto.d.ts index 4e6f2057..97139a22 100644 --- a/ts/njs_webcrypto.d.ts +++ b/ts/njs_webcrypto.d.ts @@ -24,7 +24,7 @@ type CipherAlgorithm = | RsaOaepParams | AesCtrParams | AesCbcParams - | AesCbcParams; + | AesGcmParams; type HashVariants = "SHA-256" | "SHA-384" | "SHA-512" | "SHA-1"; @@ -97,7 +97,7 @@ interface Pbkdf2Params { name: "PBKDF2"; hash: HashVariants; salt: NjsStringOrBuffer; - interations: number; + iterations: number; } interface EcdhParams {