node-webauthn
    Preparing search index...

    Type Alias AttestationPolicyInput

    type AttestationPolicyInput = {
        allowed_formats?: readonly (
            | "none"
            | "packed"
            | "fido-u2f"
            | "apple"
            | "android-key"
            | "android-safetynet"
            | "tpm"
        )[];
        max_safetynet_age_ms?: number;
        metadata_provider?: AttestationMetadataProvider;
        require_safetynet_cts_profile_match?: boolean;
        require_trusted_attestation?: boolean;
        trust_anchors?: ReadonlyArray<string | Buffer | Uint8Array>;
        trust_mode?: "none" | "permissive" | "strict";
    }
    Index

    Properties

    allowed_formats?: readonly (
        | "none"
        | "packed"
        | "fido-u2f"
        | "apple"
        | "android-key"
        | "android-safetynet"
        | "tpm"
    )[]
    max_safetynet_age_ms?: number
    metadata_provider?: AttestationMetadataProvider
    require_safetynet_cts_profile_match?: boolean
    require_trusted_attestation?: boolean
    trust_anchors?: ReadonlyArray<string | Buffer | Uint8Array>
    trust_mode?: "none" | "permissive" | "strict"