Enum webauthn_rs::proto::ParsedAttestationData[][src]

pub enum ParsedAttestationData {
    Basic(X509PublicKey),
    Self_,
    AttCa(X509PublicKeyVec<X509PublicKey>),
    AnonCa(X509PublicKeyVec<X509PublicKey>),
    ECDAA,
    None,
    Uncertain,
}
Expand description

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

Variants

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

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

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

Formats the value using the given formatter. Read more

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

Performs the conversion.

Performs the conversion.

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.