FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

gh-94172: Remove ssl.PROTOCOL_SSLv2 dead code by vstinner · Pull Request #94312 · python/cpython · GitHub

/ cpython Public

gh-94172: Remove ssl.PROTOCOL_SSLv2 dead code - #94312

Merged
vstinner merged 1 commit into
python:mainfrom
vstinner:ssl_v2
Jun 28, 2022
Merged

gh-94172: Remove ssl.PROTOCOL_SSLv2 dead code#94312
vstinner merged 1 commit into
python:mainfrom
vstinner:ssl_v2

Conversation

vstinner commented Jun 26, 2022
edited by bedevere-bot
Loading

Copy link
Copy Markdown
Member

Remove dead code related to ssl.PROTOCOL_SSLv2. ssl.PROTOCOL_SSLv2
was already removed in Python 3.10.

In test_ssl, @requires_tls_version('SSLv2') always returned False.

Extract of the removed code: "OpenSSL has removed support for SSLv2".

Remove dead code related to ssl.PROTOCOL_SSLv2. ssl.PROTOCOL_SSLv2
was already removed in Python 3.10.

In test_ssl, @requires_tls_version('SSLv2') always returned False.

Extract of the removed code: "OpenSSL has removed support for SSLv2".

Copy link
Copy Markdown
Member Author

vstinner added the skip news label now

The only effect for end users is the removal of the documentation. The ssl.PROTOCOL_SSLv2 constant was already removed in Python 3.10.

Copy link
Copy Markdown
Member Author

On Fedora 36, OPENSSL_NO_SSL3 is defined by /usr/include/openssl/configuration-x86_64.h. This file is documented as:

OpenSSL was configured with the following options

It seems like disabling SSLv3 is still a configuration option in OpenSSL 3.0.3.

For me, it's not obvious that Python no longer supports SSLv3. It seems to depend if SSLv3 was disabled in OpenSSL configuration (when OpenSSL was built).

Python ssl.SSLContext() sets SSL_OP_NO_SSLv3 option, unless protocol=PY_SSL_VERSION_SSL3.

Copy link
Copy Markdown
Member Author

cc @tiran

vstinner merged commit 600c65c into python:main Jun 28, 2022
vstinner deleted the ssl_v2 branch June 28, 2022 11:57

Copy link
Copy Markdown
Member Author

Follow-up: issue #94377 "ssl: Drop support for unsafe SSLv3 protocol, remove ssl.PROTOCOL_SSLv3".

gvanrossum pushed a commit to gvanrossum/cpython that referenced this pull request Jun 30, 2022
Remove dead code related to ssl.PROTOCOL_SSLv2. ssl.PROTOCOL_SSLv2
was already removed in Python 3.10.

In test_ssl, @requires_tls_version('SSLv2') always returned False.

Extract of the removed code: "OpenSSL has removed support for SSLv2".
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants


Back | FazBrowse Home | New Git URL