From c30b2957f0a3765a463b782170943732a87c2978 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 --- doc/api/webcrypto.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/api/webcrypto.md b/doc/api/webcrypto.md index 9d277232fc1553..84185151ac56b3 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -597,6 +597,8 @@ be resolved with an {ArrayBuffer} containing the generated data. The algorithms currently supported include: * `'ECDH'` +* `'X25519'`[^1] +* `'X448'`[^1] * `'HKDF'` * `'PBKDF2'` @@ -635,6 +637,8 @@ generate raw keying material, then passing the result into the The algorithms currently supported include: * `'ECDH'` +* `'X25519'`[^1] +* `'X448'`[^1] * `'HKDF'` * `'PBKDF2'` @@ -910,7 +914,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'`