ping-identity
    Preparing search index...

    Type Alias BindingJourneySignOptions

    Options for Journey-scoped device signing-verifier callback execution.

    type BindingJourneySignOptions = {
        appPin?: BindingAppPinConfig;
        biometric?: BindingBiometricSignConfig;
        claims?: Record<string, unknown>;
        index?: number;
        jwt?: BindingJwtConfig;
        signingAlgorithm?: string;
    }
    Index

    Properties

    claims?: Record<string, unknown>

    Optional custom claims to include in the signed JWT payload.

    Reserved claim names (sub, exp, iat, nbf, iss, challenge) are not allowed and will cause the operation to fail.

    index?: number

    Optional callback index when multiple DeviceSigningVerifierCallback instances are present.

    signingAlgorithm?: string

    JWS algorithm for the signed JWT proof (Android only).

    Defaults to "RS512" when omitted. Common values: "RS256", "RS384", "RS512". iOS uses ES256 exclusively (Secure Enclave) and ignores this option.