ParsedOcspSingleResponse
Status of one certificate inside an OCSP BasicResponse.
ts
interface ParsedOcspSingleResponse {
readonly certId: ParsedOcspCertId;
readonly certStatus: OcspCertStatus;
readonly thisUpdate: Date;
readonly nextUpdate?: Date;
readonly revokedAt?: Date;
readonly revocationReasonCode?: number;
}Properties
readonlycertId:ParsedOcspCertId— Which certificate this status applies to.readonlycertStatus:OcspCertStatus— Responder's verdict:good,revoked, orunknown.readonlythisUpdate:Date— Start of the validity window for this status assertion.readonlynextUpdate?:Date— End of the validity window. Absent if the responder does not commit to a schedule.readonlyrevokedAt?:Date— When the certificate was revoked (only forcertStatus === 'revoked').readonlyrevocationReasonCode?:number— CRLReason integer (only forcertStatus === 'revoked').