diff options
author | Thomas Grainger <tagrain@gmail.com> | 2022-12-20 07:10:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 07:10:30 (GMT) |
commit | 79ccc03b62d819d83e592c6c8038545d9263a0d4 (patch) | |
tree | 5f2ea0fd8dd17d889c59d7dd8a3c2adec0d526ee /Doc/library | |
parent | 36a0b1d0dddbdf324d98071ea31e7e9151eea6d5 (diff) | |
download | cpython-79ccc03b62d819d83e592c6c8038545d9263a0d4.zip cpython-79ccc03b62d819d83e592c6c8038545d9263a0d4.tar.gz cpython-79ccc03b62d819d83e592c6c8038545d9263a0d4.tar.bz2 |
gh-89051: Add ssl.OP_LEGACY_SERVER_CONNECT (#93927)
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Christian Heimes <christian@python.org>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Fixes https://github.com/python/cpython/issues/89051
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ssl.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 08824fe..78d44a2 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -823,6 +823,13 @@ Constants .. versionadded:: 3.12 +.. data:: OP_LEGACY_SERVER_CONNECT + + Allow legacy insecure renegotiation between OpenSSL and unpatched servers + only. + + .. versionadded:: 3.12 + .. data:: HAS_ALPN Whether the OpenSSL library has built-in support for the *Application-Layer |