From 1a5005cbae83ae014fdb579b19ab90c512d82d62 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Mon, 15 Jun 2026 11:40:11 +0200 Subject: [PATCH] doc,crypto: mark argon2 and encap/decap as stable Signed-off-by: Filip Skokan --- doc/api/crypto.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 00a77f38a6d3b3..d44449e8d5d1fb 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -3308,8 +3308,6 @@ Does not perform any other validation checks on the certificate. added: v24.7.0 --> -> Stability: 1.2 - Release candidate - * `algorithm` {string} Variant of Argon2, one of `"argon2d"`, `"argon2i"` or `"argon2id"`. * `parameters` {Object} * `message` {string|ArrayBuffer|Buffer|TypedArray|DataView} REQUIRED, this is the password for password @@ -3394,8 +3392,6 @@ argon2('argon2id', parameters, (err, derivedKey) => { added: v24.7.0 --> -> Stability: 1.2 - Release candidate - * `algorithm` {string} Variant of Argon2, one of `"argon2d"`, `"argon2i"` or `"argon2id"`. * `parameters` {Object} * `message` {string|ArrayBuffer|Buffer|TypedArray|DataView} REQUIRED, this is the password for password @@ -4119,8 +4115,6 @@ algorithm names. added: v24.7.0 --> -> Stability: 1.2 - Release candidate - * `key` {Object|string|ArrayBuffer|Buffer|TypedArray|DataView|KeyObject} Private Key * `ciphertext` {ArrayBuffer|Buffer|TypedArray|DataView} * `callback` {Function} @@ -4188,8 +4182,6 @@ If the `callback` function is provided this function uses libuv's threadpool. added: v24.7.0 --> -> Stability: 1.2 - Release candidate - * `key` {Object|string|ArrayBuffer|Buffer|TypedArray|DataView|KeyObject} Public Key * `callback` {Function} * `err` {Error}