We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b7c7a1 commit 28299e3Copy full SHA for 28299e3
crates/stdlib/src/openssl.rs
@@ -277,6 +277,8 @@ mod _ssl {
277
const HAS_TLSv1_3: bool = cfg!(ossl111);
278
#[pyattr]
279
const HAS_PSK: bool = true;
280
+ #[pyattr]
281
+ const HAS_PHA: bool = cfg!(ossl111);
282
283
// Encoding constants for Certificate.public_bytes()
284
crates/stdlib/src/ssl.rs
@@ -327,6 +327,8 @@ mod _ssl {
327
const HAS_TLSv1_2: bool = true; // rustls supports TLS 1.2
328
329
const HAS_TLSv1_3: bool = true;
330
331
+ const HAS_PHA: bool = false; // Post-Handshake Auth not supported in rustls
332
333
// Encoding constants (matching OpenSSL)
334
0 commit comments