diff options
author | Christian Heimes <christian@python.org> | 2017-08-15 10:45:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-15 10:45:40 +0200 |
commit | 7f6a13bd562ff6a265fc63a991327feaecb07a77 (patch) | |
tree | 054d79458abe802cfbf5c2576eb44c8445f352d4 /Misc/NEWS.d/next/Tests | |
parent | [3.6] bpo-31002: IDLE: Add tests for configdialog keys tab (GH-2996) (#3092) (diff) | |
download | cpython-7f6a13bd562ff6a265fc63a991327feaecb07a77.tar.gz cpython-7f6a13bd562ff6a265fc63a991327feaecb07a77.tar.bz2 cpython-7f6a13bd562ff6a265fc63a991327feaecb07a77.zip |
[3.6] bpo-30714: ALPN changes for OpenSSL 1.1.0f (#3093)
OpenSSL 1.1.0 to 1.1.0e aborted the handshake when server and client
could not agree on a protocol using ALPN. OpenSSL 1.1.0f changed that.
The most recent version now behaves like OpenSSL 1.0.2 again. The ALPN
callback can pretend to not been set.
See https://github.com/openssl/openssl/pull/3158 for more details
Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit a5c1bab352671e043645163ca50c5211aa657acd)
Diffstat (limited to 'Misc/NEWS.d/next/Tests')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2017-07-25-15-27-44.bpo-30715.Sp7bTF.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2017-07-25-15-27-44.bpo-30715.Sp7bTF.rst b/Misc/NEWS.d/next/Tests/2017-07-25-15-27-44.bpo-30715.Sp7bTF.rst new file mode 100644 index 00000000000..88394e585c5 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2017-07-25-15-27-44.bpo-30715.Sp7bTF.rst @@ -0,0 +1,2 @@ +Address ALPN callback changes for OpenSSL 1.1.0f. The latest version behaves +like OpenSSL 1.0.2 and no longer aborts handshake. |