Extract attestation from a certificate
(cert: &impl CertExt)
| 18 | |
| 19 | /// Extract attestation from a certificate |
| 20 | pub fn from_cert(cert: &impl CertExt) -> Result<Option<VersionedAttestation>> { |
| 21 | from_ext_getter(|oid| cert.get_extension_bytes(oid)) |
| 22 | } |
| 23 | |
| 24 | /// Extract attestation from a certificate extension getter |
| 25 | pub fn from_ext_getter( |
no test coverage detected