diff options
author | Christian Heimes <christian@python.org> | 2018-05-22 20:50:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-22 20:50:12 (GMT) |
commit | e8eb6cb7920ded66abc5d284319a8539bdc2bae3 (patch) | |
tree | 6c86c439524b77e25571201b59986d3dc5c61579 /Tools | |
parent | 6c4fab0f4b95410a1a964a75dcdd953697eff089 (diff) | |
download | cpython-e8eb6cb7920ded66abc5d284319a8539bdc2bae3.zip cpython-e8eb6cb7920ded66abc5d284319a8539bdc2bae3.tar.gz cpython-e8eb6cb7920ded66abc5d284319a8539bdc2bae3.tar.bz2 |
bpo-33570: TLS 1.3 ciphers for OpenSSL 1.1.1 (GH-6976)
Change TLS 1.3 cipher suite settings for compatibility with OpenSSL
1.1.1-pre6 and newer. OpenSSL 1.1.1 will have TLS 1.3 cipers enabled by
default.
Also update multissltests and Travis config to test with latest OpenSSL.
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/ssl/multissltests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 2efc425..bbc5c66 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -45,16 +45,16 @@ OPENSSL_OLD_VERSIONS = [ ] OPENSSL_RECENT_VERSIONS = [ - "1.0.2n", - "1.1.0g", - "1.1.1-pre1", + "1.0.2o", + "1.1.0h", + "1.1.1-pre6", ] LIBRESSL_OLD_VERSIONS = [ ] LIBRESSL_RECENT_VERSIONS = [ - "2.7.1", + "2.7.3", ] # store files in ../multissl |