IO Wallet SDK
    Preparing search index...

    Interface VerifyKeyAttestationJwtOptions

    Options for verifying a key attestation JWT.

    interface VerifyKeyAttestationJwtOptions {
        callbacks: Pick<CallbackContext, "verifyJwt">;
        fetchStatusList?: FetchStatusListCallback;
        keyAttestationJwt: string;
        now?: Date;
    }
    Index

    Properties

    callbacks: Pick<CallbackContext, "verifyJwt">

    Callback required for JWT signature verification.

    fetchStatusList?: FetchStatusListCallback

    Optional callback used to fetch and evaluate revocation status from the status list referenced in payload.status.status_list.

    If omitted, revocation is not checked by this function.

    keyAttestationJwt: string

    The compact key attestation JWT (key-attestation+jwt) to verify.

    now?: Date

    Current time override. If not provided, the current time is used.