diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-12-03 19:03:11 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-12-03 19:03:11 (GMT) |
commit | af12676659f906921eeea7214b9efb68ae5be6ee (patch) | |
tree | 328ab47b61c49dd5e4c407038e4a8332ecbc31ee /Doc/library/ssl.rst | |
parent | f4adbae92738b96915664461fcc3be17e19eb674 (diff) | |
parent | 2b207badd64435e75b653e04c0b51be856f4eea9 (diff) | |
download | cpython-af12676659f906921eeea7214b9efb68ae5be6ee.zip cpython-af12676659f906921eeea7214b9efb68ae5be6ee.tar.gz cpython-af12676659f906921eeea7214b9efb68ae5be6ee.tar.bz2 |
Fix #22987: update the compatibility matrix for a SSLv23 client.
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r-- | Doc/library/ssl.rst | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 3015664..f82e565 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -192,7 +192,7 @@ instead. ------------------------ --------- --------- ---------- --------- ----------- ----------- *SSLv2* yes no yes no no no *SSLv3* no yes yes no no no - *SSLv23* yes no yes no no no + *SSLv23* no yes yes yes yes yes *TLSv1* no no yes yes no no *TLSv1.1* no no yes no yes no *TLSv1.2* no no yes no no yes @@ -201,9 +201,8 @@ instead. .. note:: Which connections succeed will vary depending on the version of - OpenSSL. For example, beginning with OpenSSL 1.0.0, an SSLv23 client - will not actually attempt SSLv2 connections unless you explicitly - enable SSLv2 ciphers (which is not recommended, as SSLv2 is broken). + OpenSSL. For example, before OpenSSL 1.0.0, an SSLv23 client + would always attempt SSLv2 connections. The *ciphers* parameter sets the available ciphers for this SSL object. It should be a string in the `OpenSSL cipher list format |