-
Notifications
You must be signed in to change notification settings - Fork 83
Add gotpm read pcr. #47
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
Conversation
stevenrutherford
commented
Sep 19, 2019
- Adds new command and subcommands for read and read pcr.
- Adds misc.go to store oddball wrappers for commands like tpm2.ReadPCRs.
|
Two quick things,
|
(In the future it's probably easier to have changes be threaded conversations or whatever github calls them, so we can make sure everything is resolved) I've done this (and I think it improves usability), but I'm a little weary, since this leads to inconsistent defaults for flags. |
ac64d93 to
3955ecf
Compare
* Adds new command and subcommands for read and read pcr. * Adds misc.go to store oddball wrappers for commands like tpm2.ReadPCRs.
3955ecf to
9b5c449
Compare
6d6e855 to
7263fc0
Compare
| @@ -0,0 +1,46 @@ | |||
| package tpm2tools | |||
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.
Can we just name this file pcr.go as it only does pcr shit.
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.
Ack: will do this as a final step, but won't until we're done with the rest (to avoid marking the entire file as needing to be reviewed).
9c31b7c to
d0f8cfc
Compare
d0f8cfc to
90c8c9c
Compare
josephlr
left a comment
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.
Fixed the test and some formatting weirdness.
* Adds new command and subcommands for read and read pcr. * Adds pcr.go to store wrappers for commands like tpm2.ReadPCRs.