diff options
author | Christian Heimes <christian@python.org> | 2017-09-20 22:23:09 +0200 |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-09-20 13:23:09 -0700 |
commit | 5b6452d412b5be45f265093e75563fcf6d05dc3e (patch) | |
tree | 4f72cdc87ffdf96a76fd9b3ca57ecd901d3ccbca | |
parent | 7795321c566322513892543a80a5b06adbe3b04d (diff) | |
download | cpython-git-5b6452d412b5be45f265093e75563fcf6d05dc3e.tar.gz |
bpo-31533: fix broken link to OpenSSL docs (GH-3674) (GH-3676)
(cherry picked from commit 19e4d93)
-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 288b2914a2..93df8d7055 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -211,7 +211,7 @@ instead. The *ciphers* parameter sets the available ciphers for this SSL object. It should be a string in the `OpenSSL cipher list format - <https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>`_. + <https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_. The parameter ``do_handshake_on_connect`` specifies whether to do the SSL handshake automatically after doing a :meth:`socket.connect`, or whether the @@ -1167,7 +1167,7 @@ to speed up repeated connections from the same clients. Set the available ciphers for sockets created with this context. It should be a string in the `OpenSSL cipher list format - <https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT>`_. + <https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_. If no cipher can be selected (because compile-time options or other configuration forbids use of all the specified ciphers), an :class:`SSLError` will be raised. |