From 26c5bd8a5cb5e7c13cde729d11a5b03c5ef23987 Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Mon, 14 Jan 2019 12:11:49 -0800 Subject: [PATCH] doc: add metadata about ecdh curve options - DEFAULT_ECDH_CURVE default changed to 'auto' for 10.0.0 - ecdhCurve parameter allowed multiple values and 'auto' from 9.0.0 PR-URL: https://github.com/nodejs/node/pull/25502 Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Ben Noordhuis Reviewed-By: Colin Ihrig Reviewed-By: Ruben Bridgewater --- doc/api/tls.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/api/tls.md b/doc/api/tls.md index 907229951e3302..c7bd89f50101af 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -1183,6 +1183,10 @@ changes: - version: v9.3.0 pr-url: https://github.com/nodejs/node/pull/14903 description: The `options` parameter can now include `clientCertEngine`. + - version: v9.0.0 + pr-url: https://github.com/nodejs/node/pull/15206 + description: The `ecdhCurve` option can now be multiple `':'` separated + curve names or `'auto'`. - version: v7.3.0 pr-url: https://github.com/nodejs/node/pull/10294 description: If the `key` option is an array, individual entries do not @@ -1409,6 +1413,10 @@ console.log(tls.getCiphers()); // ['AES128-SHA', 'AES256-SHA', ...] ## tls.DEFAULT_ECDH_CURVE The default curve name to use for ECDH key agreement in a tls server. The