-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also updates DPE submodule to pull in the same zerocopy. Zerocopy's derive macro for KnownLayout has changed. Compiling DPE in caliptra-sw fails because public interfaces are leaking these private types. The solution is to mark them as a public field. There may be another workaround, but since these types are being serialized to and from raw bytes, it makes sense that these private fields should be visible to callers.
- Loading branch information
Showing
7 changed files
with
15 additions
and
15 deletions.
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
Submodule dpe
updated
21 files
+4 −4 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+9 −10 | dpe/build.rs | |
+1 −1 | dpe/src/commands/certify_key.rs | |
+1 −1 | dpe/src/commands/derive_context.rs | |
+1 −1 | dpe/src/commands/initialize_context.rs | |
+1 −1 | dpe/src/commands/rotate_context.rs | |
+1 −1 | dpe/src/commands/sign.rs | |
+3 −3 | dpe/src/dpe_instance.rs | |
+1 −1 | dpe/src/lib.rs | |
+1 −1 | dpe/src/support.rs | |
+3 −4 | dpe/src/x509.rs | |
+8 −8 | verification/client/abi.go | |
+9 −4 | verification/client/profile.go | |
+1 −0 | verification/sim/transport.go | |
+1 −1 | verification/testing/certifyKey.go | |
+8 −5 | verification/testing/deriveContext.go | |
+2 −2 | verification/testing/negativeCases.go | |
+1 −1 | verification/testing/sign.go | |
+1 −1 | verification/testing/tpm.go | |
+3 −2 | verification/testing/verification.go |
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