ParsedRevokedCertificate
A single revoked-certificate entry decoded from a CRL.
ts
interface ParsedRevokedCertificate {
readonly serialNumberHex: string;
readonly revocationDate: Date;
readonly reasonCode?: RevocationReason;
readonly invalidityDate?: Date;
readonly certificateIssuer?: readonly GeneralName[];
}Properties
readonlyserialNumberHex:string— Hex-encoded serial number of the revoked certificate.readonlyrevocationDate:Date— When the CA declared this certificate revoked.readonlyreasonCode?:RevocationReason— RFC 5280 CRLReason, if the entry carries one.readonlyinvalidityDate?:Date— When the key or certificate actually became suspect, if present.readonlycertificateIssuer?:readonlyGeneralName[]— Indirect-CRL certificate issuer override (RFC 5280 §5.3.3).