This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ramikg
Recipients christian.heimes, ramikg
Date 2021-10-07.09:36:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633599416.0.0.711610272152.issue45399@roundup.psfhosted.org>
In-reply-to
Content
The PySSLContext struct mentions that "OpenSSL has no API to get hostflags from X509_VERIFY_PARAM* struct. We have to maintain our own copy".
Since OpenSSL 1.1.0i added the function X509_VERIFY_PARAM_get_hostflags, this statement is no longer true.
Because Python 3.10 requires OpenSSL 1.1.1 (PEP 644), we no longer have to maintain a copy of the host flags.

The related PR removes the hostflags member from the PySSLContext struct.
History
Date User Action Args
2021-10-07 09:36:56ramikgsetrecipients: + ramikg, christian.heimes
2021-10-07 09:36:56ramikgsetmessageid: <1633599416.0.0.711610272152.issue45399@roundup.psfhosted.org>
2021-10-07 09:36:55ramikglinkissue45399 messages
2021-10-07 09:36:55ramikgcreate