-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added TPM SPI wait state support and debug logging. * Added platform auth ownership (change platform password to random value before boot). * Added parameter encryption support. * Removed the TPM hashing feature (not practical). * Fixed RSA with wolfTPM build. * Fixed cleanup wolfTPM objects on make clean. * Start of TPM based root of trust.
- Loading branch information
Showing
6 changed files
with
248 additions
and
145 deletions.
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
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 wolfTPM
updated
26 files
+1 −0 | .gitignore | |
+2 −2 | README.md | |
+ − | certs/example-rsa-key-pub.der | |
+9 −0 | certs/example-rsa-key-pub.pem | |
+ − | certs/example-rsa-key.der | |
+4 −1 | certs/include.am | |
+11 −11 | certs/wolf-ca-ecc-cert.pem | |
+28 −28 | certs/wolf-ca-rsa-cert.pem | |
+49 −0 | examples/boot/README.md | |
+35 −0 | examples/boot/boot.h | |
+15 −0 | examples/boot/include.am | |
+339 −0 | examples/boot/secure_rot.c | |
+1 −0 | examples/include.am | |
+4 −4 | examples/keygen/create_primary.c | |
+2 −2 | examples/keygen/keygen.c | |
+1 −1 | examples/nvram/counter.c | |
+2 −0 | examples/tpm_test.h | |
+9 −0 | examples/wrap/wrap_test.c | |
+4 −2 | hal/tpm_io.c | |
+13 −5 | src/tpm2.c | |
+11 −3 | src/tpm2_tis.c | |
+323 −218 | src/tpm2_wrap.c | |
+6 −1 | wolftpm/tpm2.h | |
+7 −3 | wolftpm/tpm2_tis.h | |
+4 −0 | wolftpm/tpm2_types.h | |
+39 −0 | wolftpm/tpm2_wrap.h |
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.