Skip to content

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

  • readonly serialNumberHex: string — Hex-encoded serial number of the revoked certificate.
  • readonly revocationDate: Date — When the CA declared this certificate revoked.
  • readonly reasonCode?: RevocationReason — RFC 5280 CRLReason, if the entry carries one.
  • readonly invalidityDate?: Date — When the key or certificate actually became suspect, if present.
  • readonly certificateIssuer?: readonly GeneralName[] — Indirect-CRL certificate issuer override (RFC 5280 §5.3.3).

Released under the MIT License.