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:
authorRich Trott <rtrott@gmail.com>2021-04-11 08:23:34 +0300
committerDarshan Sen <raisinten@gmail.com>2021-04-13 16:40:28 +0300
commit4def7c441871a40f3b304652299c5b195c2ffd14 (patch)
tree61c3305bf06c7442158a13cfac649a020a27d6f4 /doc/api/tls.md
parentf1027ecf2970f659ca7a439ceebf561ce6a1ece5 (diff)
doc: standardize on pseudorandom
Our docs use both _pseudo-random_ and _pseudorandom_. Standardize on _pseudorandom_. PR-URL: https://github.com/nodejs/node/pull/38196 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@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 6ccfb6ca2fd..d1f07363c98 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -1772,7 +1772,7 @@ changes:
**Default:** none, see `minVersion`.
* `sessionIdContext` {string} Opaque identifier used by servers to ensure
session state is not shared between applications. Unused by clients.
- * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudo-random
+ * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudorandom
data. See [Session Resumption][] for more information.
* `sessionTimeout` {number} The number of seconds after which a TLS session
created by the server will no longer be resumable. See
@@ -1915,7 +1915,7 @@ changes:
If `callback` is called with a falsy `ctx` argument, the default secure
context of the server will be used. If `SNICallback` wasn't provided the
default callback with high-level API will be used (see below).
- * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudo-random
+ * `ticketKeys`: {Buffer} 48-bytes of cryptographically strong pseudorandom
data. See [Session Resumption][] for more information.
* `pskCallback` {Function}
* socket: {tls.TLSSocket} the server [`tls.TLSSocket`][] instance for