pub enum ParsedAttestationData {
Basic(Vec<X509>),
Self_,
AttCa(Vec<X509>),
AnonCa(Vec<X509>),
ECDAA,
None,
Uncertain,
}Expand description
The processed Attestation that the Authenticator is providing in it’s AttestedCredentialData
Variants
Basic(Vec<X509>)
The credential is authenticated by a signing X509 Certificate from a vendor or provider.
Self_
The credential is authenticated using surrogate basic attestation it uses the credential private key to create the attestation signature
AttCa(Vec<X509>)
The credential is authenticated using a CA, and may provide a ca chain to validate to it’s root.
AnonCa(Vec<X509>)
The credential is authenticated using an anonymization CA, and may provide a ca chain to validate to it’s root.
ECDAA
Unimplemented
None
No Attestation type was provided with this Credential. If in doubt reject this Credential.
Uncertain
Uncertain Attestation was provided with this Credential, which may not be trustworthy in all cases. If in doubt, reject this type.
Trait Implementations
sourceimpl Clone for ParsedAttestationData
impl Clone for ParsedAttestationData
sourcefn clone(&self) -> ParsedAttestationData
fn clone(&self) -> ParsedAttestationData
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more