-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'caliptra-common' into pr954
- Loading branch information
Showing
21 changed files
with
195 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# WARNING: Do not update this file without the approval of the Caliptra TAC | ||
fc2237cea5f3517a9f5475f508e8a021df16371d099550e59eab34c0ab7d3954206719a0a58f7aa4bdd41d1dbd9a3faa caliptra-rom-no-log.bin | ||
c428fb65379fd3884d0f2865191ba2fdd1c9c9e00e3756c1a7afb8c7f3c1f6c54fd294674ac49fec24ac4932c49fbc05 caliptra-rom-with-log.bin | ||
f9db2f9623da514dedb5b5a8b3ca31e509ad2baff0b8ffc4ea3f362ae0325d0e2cae126fe42c91ad2235621edc1f5d08 caliptra-rom-no-log.bin | ||
4c39f5227a53d7adc996aaff7118893f23d5307e167ce36a222b00d31a425ef0279aa308cac3f15ed75779bc0d24d8cd caliptra-rom-with-log.bin |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Licensed under the Apache-2.0 license | ||
|
||
[package] | ||
name = "caliptra-api" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
bitflags.workspace = true | ||
caliptra-error.workspace = true | ||
zerocopy.workspace = true |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Licensed under the Apache-2.0 license | ||
|
||
#![no_std] | ||
|
||
mod capabilities; | ||
mod checksum; | ||
pub mod mailbox; | ||
|
||
pub use caliptra_error as error; | ||
pub use capabilities::Capabilities; | ||
pub use checksum::{calc_checksum, verify_checksum}; |
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.