summaryrefslogtreecommitdiff
path: root/doc/api/tls.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-10-23 21:28:42 -0700
committerRich Trott <rtrott@gmail.com>2019-10-26 08:39:41 -0700
commit10040500da6af33b602e35c3f3bbe28cf76c4c4a (patch)
tree69c2af94709de9ef7022c41423c0f618eb0d5e0a /doc/api/tls.md
parent6858c7e3e7c30986d68a683d3d5e4ede4c0b529f (diff)
downloadandroid-node-v8-10040500da6af33b602e35c3f3bbe28cf76c4c4a.tar.gz
android-node-v8-10040500da6af33b602e35c3f3bbe28cf76c4c4a.tar.bz2
android-node-v8-10040500da6af33b602e35c3f3bbe28cf76c4c4a.zip
doc: remove dashes
The use of dashes -- in general, but especially in our docs -- can be problematic. It is used inconsistently and there is always another form of punctuation that is as good or better for the situation. In an effort to reduce the number of variations we use to display the same types of information, remove the various uses of dashes from the documentation. PR-URL: https://github.com/nodejs/node/pull/30101 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/tls.md')
-rw-r--r--doc/api/tls.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 5529bd3529..3fd8e8cb49 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -83,8 +83,8 @@ all sessions). Methods implementing this technique are called "ephemeral".
Currently two methods are commonly used to achieve Perfect Forward Secrecy (note
the character "E" appended to the traditional abbreviations):
-* [DHE][] - An ephemeral version of the Diffie Hellman key-agreement protocol.
-* [ECDHE][] - An ephemeral version of the Elliptic Curve Diffie Hellman
+* [DHE][]: An ephemeral version of the Diffie Hellman key-agreement protocol.
+* [ECDHE][]: An ephemeral version of the Elliptic Curve Diffie Hellman
key-agreement protocol.
Ephemeral methods may have some performance drawbacks, because key generation
@@ -114,8 +114,8 @@ TLSv1.3, because all TLSv1.3 cipher suites use ECDHE.
ALPN (Application-Layer Protocol Negotiation Extension) and
SNI (Server Name Indication) are TLS handshake extensions:
-* ALPN - Allows the use of one TLS server for multiple protocols (HTTP, HTTP/2)
-* SNI - Allows the use of one TLS server for multiple hostnames with different
+* ALPN: Allows the use of one TLS server for multiple protocols (HTTP, HTTP/2)
+* SNI: Allows the use of one TLS server for multiple hostnames with different
SSL certificates.
### Client-initiated renegotiation attack mitigation