diff options
author | Matthew Miller <matthew@millerti.me> | 2021-08-21 23:30:41 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2021-08-21 23:30:41 -0700 |
commit | 5380b43a64405fb4cc99d244d3e5af82535e11f6 (patch) | |
tree | d9b04c9ffcaebd6ab7982e8fb13cf3d18423a3d5 | |
parent | fd975d7a9b5467275786c555bde1b91b0483b6af (diff) |
Clear preset root certs for Conformance
-rw-r--r-- | example/fido-conformance.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example/fido-conformance.ts b/example/fido-conformance.ts index 801acda..248dfbf 100644 --- a/example/fido-conformance.ts +++ b/example/fido-conformance.ts @@ -313,3 +313,7 @@ X2S5Ht8+e+EQnezLJBJXtnkRWY+Zt491wgt/AwSs5PHHMv5QgjELOuMxQBc= // Set above root cert for use by MetadataService SettingsService.setRootCertificates({ identifier: 'mds', certificates: [MDS3ROOT] }); +// Reset preset root certificates +SettingsService.setRootCertificates({ identifier: 'apple', certificates: [] }); +SettingsService.setRootCertificates({ identifier: 'android-key', certificates: [] }); +SettingsService.setRootCertificates({ identifier: 'android-safetynet', certificates: [] }); |