@contentauth/c2pa-js
    Preparing search index...
    interface VerifySettings {
        ocspFetch?: boolean;
        remoteManifestFetch?: boolean;
        skipIngredientConflictResolution?: boolean;
        strictV1Validation?: boolean;
        verifyAfterReading?: boolean;
        verifyAfterSign?: boolean;
        verifyTimestampTrust?: boolean;
        verifyTrust?: boolean;
    }
    Index

    Properties

    ocspFetch?: boolean

    Whether to fetch the certificate's OCSP status during validation. The default value is "false."

    remoteManifestFetch?: boolean

    Whether to fetch remote manifests when constructing a Reader or adding an Ingredient. The default value is "true."

    skipIngredientConflictResolution?: boolean

    Whether to skip ingredient conflict resolution when multiple ingredients share a manifest identifier. Only applicable to C2PA v2 validation. The default value is "false."

    strictV1Validation?: boolean

    Whether to perform strict C2PA v1 validation instead of the latest validation. The default value is "false."

    verifyAfterReading?: boolean

    Whether to verify the manifest after reading in the Reader. The default value is "true."

    verifyAfterSign?: boolean

    Whether to verify the manifest after signing in the Builder. The default value is "false."

    verifyTimestampTrust?: boolean

    Whether to verify the timestamp certificates against the configured trust lists. The default value is "true."

    verifyTrust?: boolean

    Enable trust validation. The default value is "true."