node-webauthn
    Preparing search index...

    Type Alias RegistrationResponseInput

    type RegistrationResponseInput = {
        allowed_attestation_formats?: readonly (
            | "none"
            | "packed"
            | "fido-u2f"
            | "apple"
            | "android-key"
            | "android-safetynet"
            | "tpm"
        )[];
        allowed_client_extensions?: readonly (
            "appidExclude"
            | "credProps"
            | "largeBlob"
        )[];
        allowed_origins?: readonly string[];
        attestation_object: string;
        client_data_json: string;
        client_extension_results?: AuthenticationExtensionsClientOutputs;
        credential_id: string;
        expected_algorithms?: readonly number[];
        expected_challenge: string;
        max_safetynet_age_ms?: number;
        metadata_provider?: AttestationMetadataProvider;
        origin: string;
        require_safetynet_cts_profile_match?: boolean;
        require_trusted_attestation?: boolean;
        require_user_presence?: boolean;
        require_user_verification?: boolean;
        rp_id: string;
        transports?: readonly string[];
        trust_anchors?: ReadonlyArray<string | Buffer | Uint8Array>;
        trust_mode?: "none" | "permissive" | "strict";
    }
    Index

    Properties

    allowed_attestation_formats?: readonly (
        | "none"
        | "packed"
        | "fido-u2f"
        | "apple"
        | "android-key"
        | "android-safetynet"
        | "tpm"
    )[]
    allowed_client_extensions?: readonly (
        "appidExclude"
        | "credProps"
        | "largeBlob"
    )[]
    allowed_origins?: readonly string[]
    attestation_object: string
    client_data_json: string
    client_extension_results?: AuthenticationExtensionsClientOutputs
    credential_id: string
    expected_algorithms?: readonly number[]
    expected_challenge: string
    max_safetynet_age_ms?: number
    metadata_provider?: AttestationMetadataProvider
    origin: string
    require_safetynet_cts_profile_match?: boolean
    require_trusted_attestation?: boolean
    require_user_presence?: boolean
    require_user_verification?: boolean
    rp_id: string
    transports?: readonly string[]
    trust_anchors?: ReadonlyArray<string | Buffer | Uint8Array>
    trust_mode?: "none" | "permissive" | "strict"