summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/api/tls.md15
1 files changed, 13 insertions, 2 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 8fa601096b..7473c11a68 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -827,16 +827,27 @@ changes:
pr-url: https://github.com/nodejs/node/pull/26625
description: Return the minimum cipher version, instead of a fixed string
(`'TLSv1/SSLv3'`).
+ - version: REPLACEME
+ pr-url: https://github.com/nodejs/node/pull/30637
+ description: Return the IETF cipher name as `standardName`.
-->
* Returns: {Object}
- * `name` {string} The name of the cipher suite.
+ * `name` {string} OpenSSL name for the cipher suite.
+ * `standardName` {string} IETF name for the cipher suite.
* `version` {string} The minimum TLS protocol version supported by this cipher
suite.
Returns an object containing information on the negotiated cipher suite.
-For example: `{ name: 'AES256-SHA', version: 'TLSv1.2' }`.
+For example:
+```json
+{
+ "name": "AES128-SHA256",
+ "standardName": "TLS_RSA_WITH_AES_128_CBC_SHA256",
+ "version": "TLSv1.2"
+}
+```
See
[SSL_CIPHER_get_name](https://www.openssl.org/docs/man1.1.1/man3/SSL_CIPHER_get_name.html)