From 91d2090680c355a5a4714e24b90b294a7890a2fb 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 --- doc/api/tls.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/api/tls.md b/doc/api/tls.md index 9d0011bb5ccf49..6162ef71c0be50 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -1174,6 +1174,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 @@ -1402,6 +1406,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