-
Notifications
You must be signed in to change notification settings - Fork 136
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
cms: ECC KeyAgreementRecipientInfo initial support #1579
Open
nemynm
wants to merge
26
commits into
RustCrypto:master
Choose a base branch
from
nemynm:cms-ecc-kari
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 23 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
fe7367b
cms: ecc-kari support - add kari and utils modules
nemynm c2a837b
cms: ecc-kari support - add EccCmsSharedInfo
nemynm d9d4a24
cms: ecc-kari support - add KeyAgreementAlgorithm
nemynm 7e335e1
cms: ecc-kari support - add RFC details for KeyAgreementAlgorithm
nemynm 4d2034a
cms: ecc-kari support - add KeyWrapAlgorithm
nemynm 78ecc1a
cms: ecc-kari support - add elliptic-curve dependency
nemynm 03e599a
cms: ecc-kari support - add aes-kw dependency
nemynm 914ed59
cms: ecc-kari support - move KeyWrapAlgorithm to kw module
nemynm 0fbe363
cms: ecc-kari support - add EcKeyEncryptionInfo
nemynm dd3b09d
cms: ecc-kari support - add kdf dependency
nemynm 92cc970
cms: ecc-kari support - move KeyAgreeRecipientInfoBuilder to sub-module
nemynm 5a053ea
cms: ecc-kari support - add elliptic-curve/pkcs8
nemynm 139828e
cms: ecc-kari support - add KDF utilities
nemynm 885d934
cms: ecc-kari support - add key wrap utilities
nemynm 8105d27
cms: ecc-kari support - add p256-priv.der corresponding public key
nemynm 066d0a7
cms: ecc-kari support - add comments and exports
nemynm 804ebf4
cms: ecc-kari support - add kari test module
nemynm d3015cb
cms: ecc-kari support - add test for kari builder
nemynm 9bce42a
cms: ecc-kari support
nemynm a042e2c
cms: ecc-kari support - remove default builder
nemynm 457281c
cms: ecc-kari support - add From<ContentEncryptionAlgorithm> for KeyW…
nemynm 4901a07
cms: ecc-kari support - add From<KeyWrapAlgorithm> for WrappingKey test
nemynm fa50632
cms: ecc-kari support - bring EnvelopedData in scope for doc
nemynm 73b0b44
cms: use aes-kw pre-release
baloo 8dde07b
Merge pull request #1 from baloo/baloo/cms/aes-kw-pre
nemynm 1bcc5b6
Merge branch 'RustCrypto:master' into cms-ecc-kari
nemynm 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
This duplicates the dependency on aes and cipher, we should bump aes-kw to use "aes 0.9.0-pre.2" & "cipher 0.5.0-pre.7".
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.
RustCrypto/key-wraps#34
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.
nemynm#1
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.
Thanks, I'll merge once it's ready
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.
Merged