-
-
Notifications
You must be signed in to change notification settings - Fork 34.5k
gh-128035: Add ssl.HAS_PHA to detect libssl PHA support #128036
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
gpshead
merged 9 commits into
python:main
from
WillChilds-Klein:ssl-add-has-pha-property
Dec 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7293bec
Add ssl.HAS_PHA to detect libssl PHA support
WillChilds-Klein 9543715
ππ€ Added by blurb_it.
blurb-it[bot] 0c8f5dd
Update Doc/library/ssl.rst
WillChilds-Klein fcb7190
Fix news lint
WillChilds-Klein f7850fd
Update Doc/library/ssl.rst
WillChilds-Klein 57ce78f
Update Lib/test/test_httplib.py
WillChilds-Klein 65e6a0d
Shorten news entry, update whatsnew
WillChilds-Klein 63df081
Move whatsnew section
WillChilds-Klein a3548a8
Fix whatsnew formatting
WillChilds-Klein File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix news lint
- Loading branch information
commit fcb7190187183464e207b092280360b108a436b2
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
Misc/NEWS.d/next/Core_and_Builtins/2024-12-17-18-20-37.gh-issue-128035.JwqHdB.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| TLSv1.3 post-handshake client authentication (PHA), often referred to as "mutual TLS" or "mTLS", allows TLS servers to authenticate client identities using digital certificates. This commit exposes a boolean property `ssl.HAS_PHA` to indicate whether the crypto library CPython is built against supports PHA, allowing python's test suite and consuming modules to branch accordingly. | ||
| TLSv1.3 post-handshake client authentication (PHA), often referred to as "mutual TLS" or "mTLS", allows TLS servers to authenticate client identities using digital certificates. This commit exposes a boolean property ``ssl.HAS_PHA`` to indicate whether the crypto library CPython is built against supports PHA, allowing python's test suite and consuming modules to branch accordingly. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A shorter NEWS should be written. The NEWS is a message that users will see (it's in the changelog). Some suggestion:
In addition, you should add a What's New entry in
Doc/whatsnew/3.14.rstindicating the additional constant. Usually, the same message as for the NEWS entry can be reused (check the other entries for the formatting).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the guidance. I've updated the news and whatsnew files accordingly.