diff options
author | Christian Heimes <christian@python.org> | 2018-03-24 17:38:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-24 17:38:14 (GMT) |
commit | f5befbb0d1526f18eb2b24eabb48c3b761c624a2 (patch) | |
tree | f222e19f2bd5c16fdb47eb14d5ba99923d902e2f /Tools | |
parent | 643a781188539de038745d23d0e8e5a03b781209 (diff) | |
download | cpython-f5befbb0d1526f18eb2b24eabb48c3b761c624a2.zip cpython-f5befbb0d1526f18eb2b24eabb48c3b761c624a2.tar.gz cpython-f5befbb0d1526f18eb2b24eabb48c3b761c624a2.tar.bz2 |
[3.6] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (GH-6214)
LibreSSL 2.7 introduced OpenSSL 1.1.0 API. The ssl module now detects
LibreSSL 2.7 and only provides API shims for OpenSSL < 1.1.0 and
LibreSSL < 2.7.
Documentation updates and fixes for failing tests will be provided in
another patch set.
Signed-off-by: Christian Heimes <christian@python.org>.
(cherry picked from commit 4ca0739c9d97ac7cd45499e0d31be68dc659d0e1)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/ssl/multissltests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index ce5bbd8..ba4529a 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -57,8 +57,9 @@ LIBRESSL_OLD_VERSIONS = [ ] LIBRESSL_RECENT_VERSIONS = [ - "2.5.3", "2.5.5", + "2.6.4", + "2.7.1", ] # store files in ../multissl |