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:
authorTobias Nießen <tniessen@tnie.de>2022-02-02 02:08:39 +0300
committerGitHub <noreply@github.com>2022-02-02 02:08:39 +0300
commitdcf4890a32d0a493df32e4af66bc1dd68ba8b16b (patch)
tree693b8901f0b9ff0a6d51ca40402d04bbf0ac847b /doc/api/tls.md
parentf436f6f55edbfd1600d18bea06bbbe0931ef1033 (diff)
doc: improve wording surrounding TLS 1.3 ciphers
Spelling out numbers makes this part easier to read. Also remove the unnecessary word 'last'. PR-URL: https://github.com/nodejs/node/pull/41778 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Nitzan Uziely <linkgoron@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'doc/api/tls.md')
-rw-r--r--doc/api/tls.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 24c7ea74280..f2142b63059 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -357,7 +357,7 @@ the default configuration. If these clients _must_ be supported, the
[TLS recommendations][] may offer a compatible cipher suite. For more details
on the format, see the OpenSSL [cipher list format][] documentation.
-There are only 5 TLSv1.3 cipher suites:
+There are only five TLSv1.3 cipher suites:
* `'TLS_AES_256_GCM_SHA384'`
* `'TLS_CHACHA20_POLY1305_SHA256'`
@@ -365,7 +365,7 @@ There are only 5 TLSv1.3 cipher suites:
* `'TLS_AES_128_CCM_SHA256'`
* `'TLS_AES_128_CCM_8_SHA256'`
-The first 3 are enabled by default. The last 2 `CCM`-based suites are supported
+The first three are enabled by default. The two `CCM`-based suites are supported
by TLSv1.3 because they may be more performant on constrained systems, but they
are not enabled by default since they offer less security.