Update rustls 0.23.27 -> 0.23.28, expose new API surface & errors#574
Merged
cpu merged 5 commits intorustls:mainfrom Jun 23, 2025
Merged
Update rustls 0.23.27 -> 0.23.28, expose new API surface & errors#574cpu merged 5 commits intorustls:mainfrom
cpu merged 5 commits intorustls:mainfrom
Conversation
This is FFI for `ClientConnection::tls13_tickets_received()`.
Adds a new `rustls_result` matching the new upstream `CertificateError::UnsupportedSignatureAlgorithm`.
…RE_ALGORITHM This adds a new `rustls_result` for the new upstream `CertRevocationListError::UnsupportedSignatureAlgorithm` error variant.
6b58136 to
22bff8b
Compare
djc
approved these changes
Jun 23, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This branch updates
librustlsfrom usingrustls0.23.27 to using 0.23.28.The upstream release brings a few new features that we expose in the FFI layer:
named_groupsfield is added to the experimentalrustls_client_hellostructure provided to a Crustls_client_hello_callbackfor cert selection (Exposenamed_groupsextension inClientHellorustls#2488)rustls_connection_get_tls13_tickets_received()fn is added to get the count of TLS 1.3 session tickets received by a clientrustls_connection(feat: expose the number of received TLS1.3 resumption tickets rustls#2476)rustls_resulterror codes are added,RUSTLS_RESULT_CERT_UNSUPPORTED_SIGNATURE_ALGORITHMandRUSTLS_RESULT_CERT_REVOCATION_LIST_UNSUPPORTED_SIGNATURE_ALGORITHM(Introduce specific error for unsupported signatures rustls#2479)