Skip to content

CreateOcspRequestItemInput

One certificate whose status to query in an OCSP request. Used as an element of CreateOcspRequestInput.requests.

ts
interface CreateOcspRequestItemInput {
	readonly certificate: OcspCertificateSource;
	readonly issuerCertificate: OcspCertificateSource;
}

Properties

  • readonly certificate: OcspCertificateSource — Certificate whose revocation status is being queried.
  • readonly issuerCertificate: OcspCertificateSource — Issuer of certificate — needed to compute the CertID hash.

Released under the MIT License.