[2.7] closes bpo-34050: Fix link in SSL docs (GH-8173). (GH-8179) · python/cpython@3707dfa

Original file line numberDiff line numberDiff line change

@@ -214,7 +214,7 @@ instead.

214214
215215

The *ciphers* parameter sets the available ciphers for this SSL object.

216216

It should be a string in the `OpenSSL cipher list format

217-

<https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_.

217+

<https://www.openssl.org/docs/manmaster/man1/ciphers.html>`_.

218218
219219

The parameter ``do_handshake_on_connect`` specifies whether to do the SSL

220220

handshake automatically after doing a :meth:`socket.connect`, or whether the

@@ -1170,7 +1170,7 @@ to speed up repeated connections from the same clients.

11701170
11711171

Set the available ciphers for sockets created with this context.

11721172

It should be a string in the `OpenSSL cipher list format

1173-

<https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_.

1173+

<https://www.openssl.org/docs/manmaster/man1/ciphers.html>`_.

11741174

If no cipher can be selected (because compile-time options or other

11751175

configuration forbids use of all the specified ciphers), an

11761176

:class:`SSLError` will be raised.