diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-09-20 20:22:56 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-09-20 20:22:56 (GMT) |
commit | 6b44ad1abdb9b3aaf27e2ba1fc4b69b9a0f50c25 (patch) | |
tree | b1ff44f8a75e1f06f4c6b744484326eedf12fc7e /Doc/library | |
parent | 97be14996b247b853ead77fb255d7029e3cf3dc9 (diff) | |
download | cpython-6b44ad1abdb9b3aaf27e2ba1fc4b69b9a0f50c25.zip cpython-6b44ad1abdb9b3aaf27e2ba1fc4b69b9a0f50c25.tar.gz cpython-6b44ad1abdb9b3aaf27e2ba1fc4b69b9a0f50c25.tar.bz2 |
bpo-31533: fix broken link to OpenSSL docs (GH-3674) (GH-3675)
(cherry picked from commit 19e4d9346db7fb65845b98a9cb9caacaaac8a81a)
Diffstat (limited to 'Doc/library')
-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 d7e0467..495cd59 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -218,7 +218,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 @@ -1445,7 +1445,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. |