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 its 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 its root.
AnonCa(Vec<X509>)
The credential is authenticated using an anonymization CA, and may provide a ca chain to validate to its 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§
Source§impl Clone for ParsedAttestationData
impl Clone for ParsedAttestationData
Source§fn clone(&self) -> ParsedAttestationData
fn clone(&self) -> ParsedAttestationData
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more