diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-03-18 22:31:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 22:31:34 (GMT) |
commit | 3365e684a83a6bc9e2e2198dca54b42711bd3c90 (patch) | |
tree | e3e84f61ecaefb26264f968327abf2a9abeb8059 /Misc/NEWS.d | |
parent | 4cc9e2348b6a8430dc21cb7ff8c9850d16f772f9 (diff) | |
download | cpython-3365e684a83a6bc9e2e2198dca54b42711bd3c90.zip cpython-3365e684a83a6bc9e2e2198dca54b42711bd3c90.tar.gz cpython-3365e684a83a6bc9e2e2198dca54b42711bd3c90.tar.bz2 |
bpo-41561: Add workaround for Ubuntu's custom security level (GH-24915)
Ubuntu 20.04 comes with a patched OpenSSL 1.1.1. Default security level
2 blocks TLS 1.0 and 1.1 connections. Regular OpenSSL 1.1.1 builds allow
TLS 1.0 and 1.1 on security level 2.
See:
See: https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/1899878
See: https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/1917625
Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit f6c6b5821bff815bdc810de53992fd1fbdb2edd4)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2021-03-18-10-34-42.bpo-41561.pDg4w-.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-03-18-10-34-42.bpo-41561.pDg4w-.rst b/Misc/NEWS.d/next/Tests/2021-03-18-10-34-42.bpo-41561.pDg4w-.rst new file mode 100644 index 0000000..2143507 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2021-03-18-10-34-42.bpo-41561.pDg4w-.rst @@ -0,0 +1 @@ +Add workaround for Ubuntu's custom OpenSSL security level policy. |