Skip to content

Commit b9d1cb7

Browse files
tniessendanielleadams
authored andcommitted
doc: improve TLS/SSL introduction
PR-URL: #41649 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Darshan Sen <[email protected]>
1 parent 7e4d455 commit b9d1cb7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

doc/api/tls.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ const tls = require('tls');
1616

1717
## TLS/SSL concepts
1818

19-
The TLS/SSL is a public/private key infrastructure (PKI). For most common
20-
cases, each server must have a _private key_.
19+
TLS/SSL is a set of protocols that rely on a public key infrastructure (PKI) to
20+
enable secure communication between a client and a server. For most common
21+
cases, each server must have a private key.
2122

2223
Private keys can be generated in multiple ways. The example below illustrates
2324
use of the OpenSSL command-line interface to generate a 2048-bit RSA private
@@ -129,8 +130,8 @@ servers can accommodate both, choosing either of them during the normal cipher
129130
negotiation step.
130131

131132
TLS-PSK is only a good choice where means exist to securely share a
132-
key with every connecting machine, so it does not replace PKI
133-
(Public Key Infrastructure) for the majority of TLS uses.
133+
key with every connecting machine, so it does not replace the public key
134+
infrastructure (PKI) for the majority of TLS uses.
134135
The TLS-PSK implementation in OpenSSL has seen many security flaws in
135136
recent years, mostly because it is used only by a minority of applications.
136137
Please consider all alternative solutions before switching to PSK ciphers.

0 commit comments

Comments
 (0)