PKI-Lite - v1.0.5
    Preparing search index...

    Represents the revocation status of a certificate.

    interface RevocationStatus {
        details?: string;
        isRevoked: boolean;
        reason?: number;
        revocationTime?: Date;
        source: "OCSP" | "CRL" | "NONE";
    }
    Index

    Properties

    details?: string

    Additional information about the revocation check

    isRevoked: boolean

    Whether the certificate is revoked

    reason?: number

    The reason for revocation, if available

    revocationTime?: Date

    The date when revocation was determined

    source: "OCSP" | "CRL" | "NONE"

    The source of revocation information (CRL or OCSP)