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
readonlyhashAlgorithmOid:string— OID of the hash algorithm used for the name and key hashes.readonlyhashAlgorithmName:string— Human-readable hash algorithm name (e.g."SHA-256").readonlyissuerNameHashHex:string— Hex-encoded hash of the issuer's distinguished name DER.readonlyissuerKeyHashHex:string— Hex-encoded hash of the issuer's SubjectPublicKey BIT STRING content.readonlyserialNumberHex:string— Hex-encoded serial number of the certificate.