-
Couldn't load subscription status.
- Fork 45
Introduce signing key repo and allow setting the base path of the signing key file IO #1321
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
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
8550d7d
[itp-sgx-crypto] add `ToPubkey` and `AccessPubkey` traits
clangenb 560c787
[itp-sgx-crypto] refactor the Rsa3072 stuff to no longer use static f…
clangenb 2906f8f
[itp-sgx-crypto] set-base-path to the PWD
clangenb e9dbe6e
[enclave-runtime] more explanation about using the PWD
clangenb 177503d
[enclave-runtime] add todo for replacing the once-cell.
clangenb 5645420
taplo fmt
clangenb 0c1d6b9
add some doc
clangenb 8ea4fff
typo
clangenb b229b3e
Merge branch 'master' into cl/set-base-path-of-shielding-key
clangenb 7a381e4
[sgx-crypto] log full path instead of just filename.
clangenb 33faf7d
[itp-sgx-io] fix standalone compilation
clangenb 19b873e
[itp-sgx-crypto] put some functions behind a trait.
clangenb b5c5284
[enclave-runtime/attestation_handler] add signing key repo to struct
clangenb 6a71619
[itp-sgx-crypto] impl `ToPubkey` for `ed25511::Pair`
clangenb cc0be6e
introduce `SigningKeyRepository` and remove all instances of `StaticF…
clangenb 16be63e
Merge branch 'master' into cl/set-base-path-of-signing-key
clangenb eac6869
[itp-sgx-crypto] change `exists()` implementations to use `self.path(…
clangenb 9b51633
[itp-sgx-crypto] fix clippy warnings
clangenb 6fddceb
taplo fmt
clangenb c856a8f
[itp-sgx-crypto] add tests for ed25519 module.
clangenb 14d2059
[itp-sgx-crypto] add tests for rsa3072 module.
clangenb dccc7e6
[itp-sgx-crypto] move seed file constant from settings to the ed25519…
clangenb 97a2397
typo
clangenb 7ed1d63
[itp-sgx-crypto] tests: ensure that the keys don't exist initially
clangenb 261e3ff
Merge branch 'master' into cl/set-base-path-of-signing-key
clangenb ee0ab63
[itp-sgx-crypto] tests: fix tempdir prefixes.
clangenb 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 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
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
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
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
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
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
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
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
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.
fixes standalone compilation of the crate with:
cargo check -p itp-sgx-io --no-default-features --features sgxThere 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 a question regarding this: how did you find it out that
itp-sgx-iono longer compiles alone?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.
It never did, we don't test standalone compilations of crates usually. I suspect many incomplete feature flags in our crates...