@contentauth/c2pa-js
    Preparing search index...

    Holds information about a signature

    interface SignatureInfo {
        alg?: SigningAlg | null;
        cert_serial_number?: string | null;
        common_name?: string | null;
        issuer?: string | null;
        revocation_status?: boolean | null;
        time?: string | null;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    alg?: SigningAlg | null

    Human-readable issuing authority for this signature.

    cert_serial_number?: string | null

    The serial number of the certificate.

    common_name?: string | null

    Human-readable for common name of this certificate.

    issuer?: string | null

    Human-readable issuing authority for this signature.

    revocation_status?: boolean | null

    Revocation status of the certificate.

    time?: string | null

    The time the signature was created.