pub enum ParsedAttestationData {
    Basic(Vec<X509, Global>),
    Self_,
    AttCa(Vec<X509, Global>),
    AnonCa(Vec<X509, Global>),
    ECDAA,
    None,
    Uncertain,
}
Expand description

The processed Attestation that the Authenticator is providing in it’s AttestedCredentialData

Variants

Basic(Vec<X509, Global>)

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, Global>)

The credential is authenticated using a CA, and may provide a ca chain to validate to it’s root.

AnonCa(Vec<X509, Global>)

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Converts this type into the (usually inferred) input type.

Serialize this value into the given Serde serializer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more