diff options
author | Will Childs-Klein <willck93@gmail.com> | 2024-12-24 18:29:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-24 18:29:27 (GMT) |
commit | 418114c139666f33abff937e40ccbbbdce15bc39 (patch) | |
tree | 97db70de47e6bb97168b9aeaf6f03b9cb3905443 /Doc/library | |
parent | 7985d460c731b2c48419a33fc1820f9512bb6f21 (diff) | |
download | cpython-418114c139666f33abff937e40ccbbbdce15bc39.zip cpython-418114c139666f33abff937e40ccbbbdce15bc39.tar.gz cpython-418114c139666f33abff937e40ccbbbdce15bc39.tar.bz2 |
gh-128035: Add ssl.HAS_PHA to detect libssl PHA support (GH-128036)
* Add ssl.HAS_PHA to detect libssl Post-Handshake-Auth support
Co-authored-by: Tomas R. <tomas.roun8@gmail.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ssl.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index f07d151..9d7b6aa 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -934,6 +934,12 @@ Constants .. versionadded:: 3.13 +.. data:: HAS_PHA + + Whether the OpenSSL library has built-in support for TLS-PHA. + + .. versionadded:: next + .. data:: CHANNEL_BINDING_TYPES List of supported TLS channel binding types. Strings in this list |