Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Majer <amajer@suse.de>2022-08-04 02:46:23 +0300
committerGitHub <noreply@github.com>2022-08-04 02:46:23 +0300
commitdd9cd813c49db569e42aae45bf624fbbe9f93767 (patch)
treea870f69b9c4be6b1e9d8ace991b2e3357e500561 /doc/api/tls.md
parentb5927439aaa7afec95612a96664efbcc5dc1d188 (diff)
doc: clarify tls.tlsSocket.getCipher().version
The getCipher() returns a tuple that includes protocol version string. This string refers to the minimum protocol version string, as per documentation. What is missing is a reference to the documentation where to get the negotiated cipher for the socket connection and a clearer example. Fixes: https://github.com/nodejs/node/issues/43406 PR-URL: https://github.com/nodejs/node/pull/44086 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'doc/api/tls.md')
-rw-r--r--doc/api/tls.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index aa08ec62e94..1d4db99a11b 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -1098,17 +1098,17 @@ changes:
* `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.
+ suite. For the actual negotiated protocol, see [`tls.TLSSocket.getProtocol()`][].
Returns an object containing information on the negotiated cipher suite.
-For example:
+For example, a TLSv1.2 protocol with AES256-SHA cipher:
```json
{
- "name": "AES128-SHA256",
- "standardName": "TLS_RSA_WITH_AES_128_CBC_SHA256",
- "version": "TLSv1.2"
+ "name": "AES256-SHA",
+ "standardName": "TLS_RSA_WITH_AES_256_CBC_SHA",
+ "version": "SSLv3"
}
```
@@ -2258,6 +2258,7 @@ added: v11.4.0
[`tls.Server`]: #class-tlsserver
[`tls.TLSSocket.enableTrace()`]: #tlssocketenabletrace
[`tls.TLSSocket.getPeerCertificate()`]: #tlssocketgetpeercertificatedetailed
+[`tls.TLSSocket.getProtocol()`]: #tlssocketgetprotocol
[`tls.TLSSocket.getSession()`]: #tlssocketgetsession
[`tls.TLSSocket.getTLSTicket()`]: #tlssocketgettlsticket
[`tls.TLSSocket`]: #class-tlstlssocket