-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add TcbRawInfoVerifier
#98
Conversation
Current dependencies on/for this PR:
This comment was auto-generated by Graphite. |
❌ Unreviewed dependencies found
|
Codecov Report
@@ Coverage Diff @@
## nick/quote-verifier #98 +/- ##
=======================================================
+ Coverage 97.83% 97.90% +0.07%
=======================================================
Files 7 7
Lines 2028 2101 +73
=======================================================
+ Hits 1984 2057 +73
Misses 44 44
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Add `TcbRawInfoVerifier` which can be composed with other verifiers to verify the signature and date validity of the `TcbRawInfo`.
Previously an `Error` was used for the `TcbInfoRawVerifier`. This required one to set the error even when the verification succeeded. Now an `Option` is used to more clearly delineate an error vs success.
99cbbf5
to
93c94dd
Compare
@nick-mobilecoin started a stack merge that includes this pull request via Graphite. |
@nick-mobilecoin merged this pull request with Graphite. |
Add
TcbRawInfoVerifier
which can be composed with other verifiers toverify the signature and date validity of the
TcbRawInfo
.Motivation