-
Notifications
You must be signed in to change notification settings - Fork 1k
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
feat(tls): AWS Libcrypto Support #2008
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
5754971
add tls crypto provider feature
jenr24-architect 9bb7ab0
Merge branch 'master' of https://github.com/hyperium/tonic
jenr24-architect 645d6dc
fix features
jenr24-architect 4cd649b
fix
jenr24-architect 3fe5c26
fix
jenr24-architect 843c6c1
add tls-aws-lc to conditional compilation
jenr24-architect 6bb3a9c
fix conditional compilation
jenr24-architect da565a0
fix conditional compilation
jenr24-architect 0185ddb
revert formatting
jenr24-architect 065faf4
revert formatting
jenr24-architect 3dfae60
add tls-any and deprecate tls
jenr24-architect a01b67e
formatting
jenr24-architect c9c833c
revert formatting
jenr24-architect f7b4000
revert formatting
jenr24-architect 91f6f3b
clean up #[cfg(..)]
jenr24-architect ea4b2c3
tests pass
jenr24-architect 423e84d
update workflow for new features
jenr24-architect 649d12d
internal feature flag
jenr24-architect 00f31fc
revert formatting
jenr24-architect 033f221
update docs
jenr24-architect 1c73ca4
specify rustls version in tests
jenr24-architect 121fda7
tls only depends on tls-ring
jenr24-architect 6411c3c
update CI + deps
jenr24-architect 43b4214
minor change for force push
jenr24-architect 0176510
Merge branch 'master' of https://github.com/hyperium/tonic
jenr24-architect e8d2de6
fmt
jenr24-architect e8dd0f1
fix docs
jenr24-architect c2c736b
fix ring docs link
jenr24-architect b7afdbf
Merge branch 'master' of https://github.com/hyperium/tonic
jenr24-architect 8daf349
Update Cargo.toml
jenr24-architect 2e32fdd
Merge branch 'master' of https://github.com/hyperium/tonic
jenr24-architect 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
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
Just thinking out loud: it strikes me as unfortunate that this the implication here is that because you would only need to access the certificate trust store for doing client things, that we should also enable the
channel
feature, which is also necessary for client things.Like in my mind, it would somehow be nicer if this was
tls-client-native-roots
, etc... to better indicate what the feature was affecting.Anyways, just thinking out loud. None of this is blocking or needs a response. :)
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.
I think this is a good idea. However, since the scope is different from this pull request, I think it would be good to discuss it in a separate pull request rather than changing them here.