Skip to content

ValidateCertificateRevocationListInput

Input for validateCertificateRevocationList.

ts
interface ValidateCertificateRevocationListInput {
	readonly crl: CrlSource;
	readonly issuerCertificate: CrlCertificateSource;
	readonly at?: Date;
	readonly clockSkewMs?: number;
}

Properties

  • readonly crl: CrlSource — The CRL to validate.
  • readonly issuerCertificate: CrlCertificateSource — Certificate of the CA that should have signed the CRL.
  • readonly at?: Date — Evaluation time for freshness checks. Defaults to new Date().
  • readonly clockSkewMs?: number — Tolerance in milliseconds for clock skew when checking thisUpdate/nextUpdate.

Released under the MIT License.