summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2020-05-16 01:33:05 (GMT)
committerGitHub <noreply@github.com>2020-05-16 01:33:05 (GMT)
commit6e8cda91d92da72800d891b2fc2073ecbc134d98 (patch)
tree501dd9349f86747647e424002fa68605ebf598a8 /Misc
parent6b6092f533f0e4787b8564c4fad6ec6d1018af0d (diff)
downloadcpython-6e8cda91d92da72800d891b2fc2073ecbc134d98.zip
cpython-6e8cda91d92da72800d891b2fc2073ecbc134d98.tar.gz
cpython-6e8cda91d92da72800d891b2fc2073ecbc134d98.tar.bz2
bpo-40457: Support OpenSSL without TLS 1.0/1.1 (GH-19862)
OpenSSL can be build without support for TLS 1.0 and 1.1. The ssl module now correctly adheres to OPENSSL_NO_TLS1 and OPENSSL_NO_TLS1_1 flags. Also update multissltest to test with latest OpenSSL and LibreSSL releases. Signed-off-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: @tiran
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-05-02-17-17-37.bpo-40457.EXReI1.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-02-17-17-37.bpo-40457.EXReI1.rst b/Misc/NEWS.d/next/Library/2020-05-02-17-17-37.bpo-40457.EXReI1.rst
new file mode 100644
index 0000000..19b6dd6
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-05-02-17-17-37.bpo-40457.EXReI1.rst
@@ -0,0 +1 @@
+The ssl module now support OpenSSL builds without TLS 1.0 and 1.1 methods.