Skip to content

CheckCertificateRevocationFailureDetails

Diagnostic details attached to an indeterminate revocation result.

ts
interface CheckCertificateRevocationFailureDetails {
	readonly checkedSources: readonly RevocationEvidenceKind[];
	readonly indeterminateEvidence: readonly RevocationIndeterminateEvidence[];
}

Properties

  • readonly checkedSources: readonly RevocationEvidenceKind[] — Which evidence kinds were attempted ('crl', 'ocsp', or both).
  • readonly indeterminateEvidence: readonly RevocationIndeterminateEvidence[] — Per-evidence explanations of why no definitive answer was reached.

Released under the MIT License.