diff options
author | Matt Eaton <agnosticdev@gmail.com> | 2018-03-11 01:00:04 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2018-03-11 01:00:04 (GMT) |
commit | 9cf8c42f3231d3f066670d087a997bd1278482a0 (patch) | |
tree | bda8c618ba8289353a765bd83280826a627eb84e /Doc | |
parent | 7280a4eef5fbe17e8ac82afd71fe6e51843240a5 (diff) | |
download | cpython-9cf8c42f3231d3f066670d087a997bd1278482a0.zip cpython-9cf8c42f3231d3f066670d087a997bd1278482a0.tar.gz cpython-9cf8c42f3231d3f066670d087a997bd1278482a0.tar.bz2 |
bpo-33045: Fix typos in SSL documentation (GH-6065)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 2b4bed4..8082a38 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1688,7 +1688,7 @@ to speed up repeated connections from the same clients. .. method:: SSLContext.load_dh_params(dhfile) - Load the key generation parameters for Diffie-Helman (DH) key exchange. + Load the key generation parameters for Diffie-Hellman (DH) key exchange. Using DH key exchange improves forward secrecy at the expense of computational resources (both on the server and on the client). The *dhfile* parameter should be the path to a file containing DH @@ -2603,7 +2603,7 @@ with LibreSSL. Documentation of underlying :mod:`socket` class `SSL/TLS Strong Encryption: An Introduction <https://httpd.apache.org/docs/trunk/en/ssl/ssl_intro.html>`_ - Intro from the Apache webserver documentation + Intro from the Apache HTTP Server documentation `RFC 1422: Privacy Enhancement for Internet Electronic Mail: Part II: Certificate-Based Key Management <https://www.ietf.org/rfc/rfc1422>`_ Steve Kent |