-
Notifications
You must be signed in to change notification settings - Fork 20
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: AwsKmsMrkAwareSymmetricKeyring #383
Merged
seebees
merged 26 commits into
aws:develop
from
seebees:aws-kms-mrk-aware-symmetric-keyring
Oct 29, 2021
Merged
Changes from 14 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
0bb1514
feat: AwsKmsMrkAwareSymmetricKeyring
seebees 5478563
Moving Closures into our code for review
seebees 5d61a2d
Actions are a better name
seebees a28ebba
Remove unused imports
seebees 302a7d2
Needs to be valid to use
seebees 78fd161
Better subset type
seebees 099e393
Argument order
seebees 0720f59
Start to remove the old KMS keyring
seebees a8d75ff
No using
seebees 31a0a87
Useable is a better name
seebees 77f9c02
Remove comment
seebees e6a43e7
Unused import
seebees 22c2d0d
Remove this.
seebees f82550b
Better filter name
seebees 0692958
Update comment
seebees 7e49afb
Spelling
seebees 2d518c5
Simplify the import/name
seebees 2b6fb33
Ensure constructor…
seebees 117708e
Parsed to handle the `.value` confusion
seebees 12966e8
Better error message
seebees e6c7778
DecryptCalledWith
seebees abf6900
Merge branch 'develop' into aws-kms-mrk-aware-symmetric-keyring
seebees 1bc350f
More names
seebees 4e1e3b6
Update the other keyring
seebees cdf3d22
Wow license, good job CI
seebees 7089a3d
Update library
seebees 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ test/**/Output/* | |
|
||
# Duvet output | ||
specification_compliance_report.html | ||
|
||
# VS Code local history | ||
/.history |
Submodule aws-encryption-sdk-specification
updated
from 3c7c72 to c35fbd
Submodule libraries
updated
from 162c2a to 2e56b6
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.
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.
I didn't actually realize this, is it explicitly documented in the ARN and/or KMS documentation?
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.
No, but it is required for how we did Dafny. Because UTF8 is not "built in" :(
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.
That is why it is here, and NOT in
ParseAwsKmsIdentifier
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.
What part of the Dafny requires ASCII (I'm assuming it's probably UTF8Valid requires later on)? And what is the consequence if there is some ID out there that uses some non-ASCII UTF8 character?
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.
@lavaleri your intuition is correct