-
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 logic to decode and verify certificate #49
Conversation
Current dependencies on/for this PR:
This comment was auto-generated by Graphite. |
332e519
to
c673d94
Compare
Codecov Report
@@ Coverage Diff @@
## main #49 +/- ##
==========================================
+ Coverage 95.78% 96.23% +0.44%
==========================================
Files 3 4 +1
Lines 902 1062 +160
==========================================
+ Hits 864 1022 +158
- Misses 38 40 +2
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
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.
Looks good to me.
03ad95a
to
2049d62
Compare
2049d62
to
323d501
Compare
323d501
to
66470b8
Compare
66470b8
to
3c7e090
Compare
❌ Unreviewed dependencies found
|
A DER encoded certificate can now be decoded and have it's signature verified
Previously the x509 certificate logic was always built as part of the `mc-attestation-verifier` crate. Now the x509 certificate logic is guarded by the `alloc` feature so that the crate can still be built in no alloc environments with limited capability.
4e56a0d
to
4a73918
Compare
Previously the PEM strings used in testing were embedded in the test modules. Now the pem contents are in individual files which are accessed via `include_str!`.
4a73918
to
aa567c9
Compare
@nick-mobilecoin queued this pull request to merge with Graphite. |
@nick-mobilecoin merged this pull request with Graphite. |
A DER encoded certificate can now be decoded and have it's signature
verified
Added expiry time as a task on #50