-
-
Notifications
You must be signed in to change notification settings - Fork 177
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
Implement support for apple-appattest attestation format #322
Conversation
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #322 +/- ##
==========================================
- Coverage 78.09% 77.92% -0.18%
==========================================
Files 87 88 +1
Lines 2433 2482 +49
Branches 401 412 +11
==========================================
+ Hits 1900 1934 +34
- Misses 431 437 +6
- Partials 102 111 +9 ☔ View full report in Codecov by Sentry. |
|
||
// Verify the validity of the certificates using Apple's App Attest root certificate. | ||
var chain = new X509Chain(); | ||
chain.ChainPolicy.RevocationMode = X509RevocationMode.NoCheck; |
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.
Maybe: NoRevocationCheck when in dev environment?
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.
In the samples I have seen for both dev and prod there are no CDP extensions present, so no way to check CRL regardless.
Resolves #319