mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-133623: Add ssl.HAS_PSK_TLS13
to detect external TLS 1.3 PSK support (#133624)
This commit is contained in:
parent
f77dac66e1
commit
6801bd32cb
6 changed files with 22 additions and 4 deletions
|
@ -116,7 +116,7 @@ except ImportError:
|
|||
|
||||
from _ssl import (
|
||||
HAS_SNI, HAS_ECDH, HAS_NPN, HAS_ALPN, HAS_SSLv2, HAS_SSLv3, HAS_TLSv1,
|
||||
HAS_TLSv1_1, HAS_TLSv1_2, HAS_TLSv1_3, HAS_PSK, HAS_PHA
|
||||
HAS_TLSv1_1, HAS_TLSv1_2, HAS_TLSv1_3, HAS_PSK, HAS_PSK_TLS13, HAS_PHA
|
||||
)
|
||||
from _ssl import _DEFAULT_CIPHERS, _OPENSSL_API_VERSION
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue