Skip to content

ParsedOcspResponderId

How the OCSP responder identifies itself — either by distinguished name or by SHA-1 hash of its public key.

ts
type ParsedOcspResponderId = {
  readonly type: byName;
  readonly name: ParsedName
} | {
  readonly type: byKeyHash;
  readonly keyHashHex: string
}

Released under the MIT License.