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

    Holds information about a signature

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

    Indexable

    • [k: string]: unknown
    Index

    Properties

    alg?: null | SigningAlg

    Human-readable issuing authority for this signature.

    cert_serial_number?: null | string

    The serial number of the certificate.

    common_name?: null | string

    Human-readable for common name of this certificate.

    issuer?: null | string

    Human-readable issuing authority for this signature.

    revocation_status?: null | boolean

    Revocation status of the certificate.

    time?: null | string

    The time the signature was created.