Skip to content

ParsedOcspCertId

Decoded OCSP CertID — identifies a certificate by hashed issuer name, hashed issuer key, and serial number.

ts
interface ParsedOcspCertId {
	readonly hashAlgorithmOid: string;
	readonly hashAlgorithmName: string;
	readonly issuerNameHashHex: string;
	readonly issuerKeyHashHex: string;
	readonly serialNumberHex: string;
}

Properties

  • readonly hashAlgorithmOid: string — OID of the hash algorithm used for the name and key hashes.
  • readonly hashAlgorithmName: string — Human-readable hash algorithm name (e.g. "SHA-256").
  • readonly issuerNameHashHex: string — Hex-encoded hash of the issuer's distinguished name DER.
  • readonly issuerKeyHashHex: string — Hex-encoded hash of the issuer's SubjectPublicKey BIT STRING content.
  • readonly serialNumberHex: string — Hex-encoded serial number of the certificate.

Released under the MIT License.