From 3c653cf23a688d977b41c5be85086c6c9989798e Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Mon, 3 Oct 2022 13:36:03 +0200 Subject: [PATCH] doc,crypto: add missing CFRG curve algorithms to supported lists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/44876 Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca --- doc/api/webcrypto.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/api/webcrypto.md b/doc/api/webcrypto.md index 892e285c9b7777..280e0714276e63 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -584,6 +584,8 @@ containing the generated data. The algorithms currently supported include: * `'ECDH'` +* `'X25519'`[^1] +* `'X448'`[^1] * `'HKDF'` * `'PBKDF2'` @@ -620,6 +622,8 @@ generate raw keying material, then passing the result into the The algorithms currently supported include: * `'ECDH'` +* `'X25519'`[^1] +* `'X448'`[^1] * `'HKDF'` * `'PBKDF2'` @@ -889,7 +893,11 @@ The unwrapped key algorithms supported include: * `'RSA-PSS'` * `'RSA-OAEP'` * `'ECDSA'` +* `'Ed25519'`[^1] +* `'Ed448'`[^1] * `'ECDH'` +* `'X25519'`[^1] +* `'X448'`[^1] * `'HMAC'` * `'AES-CTR'` * `'AES-CBC'`