easy-ocsp
    Preparing search index...

    Type Alias OCSPStatusResponse

    type OCSPStatusResponse = {
        nextUpdate?: Date;
        ocspUrl: string;
        producedAt?: Date;
        rawResponse?: Buffer;
        revocationReason?: OCSPRevocationReason;
        revocationTime?: Date;
        status: "good" | "revoked" | "unknown";
        thisUpdate?: Date;
    }
    Index

    Properties

    nextUpdate?: Date

    The time at or before which newer information will be available about the status of the certificate.

    ocspUrl: string

    The OCSP responder URL

    producedAt?: Date

    The time at which the response was produced.

    rawResponse?: Buffer

    The raw OCSP response as a buffer. Only available if the rawResponse option is enabled in the config.

    revocationReason?: OCSPRevocationReason

    The revocation reason. Only available if the status is 'revoked' and the OCSP response contains a revocation reason.

    revocationTime?: Date

    Time when the certificate was revoked. Only and not always available if the status is 'revoked'.

    status: "good" | "revoked" | "unknown"

    Revocation status of the certificate

    thisUpdate?: Date

    The most recent time at which the status being indicated is known by the responder to have been correct.