package
0.0.0-20250220232038-fb2fd8af7512
Repository: https://github.com/letsencrypt/boulder.git
Documentation: pkg.go.dev

# Packages

Package redis provides a Redis-based OCSP responder.

# Functions

NewFilterSource returns a filterSource which performs various checks on the OCSP requests sent to the wrapped Source, and the OCSP responses returned by it.
NewMemorySource returns an initialized InMemorySource which simply looks up responses from an in-memory map based on the serial number in the request.
NewMemorySourceFromFile reads the named file into an InMemorySource.
NewResponder instantiates a Responder with the give Source.

# Variables

ErrNotFound indicates the request OCSP response was not found.

# Structs

A Responder object provides an HTTP wrapper around a Source.
Response is a wrapper around the standard library's *ocsp.Response, but it also carries with it the raw bytes of the encoded response.

# Interfaces

Source represents the logical source of OCSP responses, i.e., the logic that actually chooses a response based on a request.