MCPcopy
hub / github.com/caddyserver/caddy / PKIIntermediateCAPool

Struct PKIIntermediateCAPool

modules/caddytls/capools.go:297–304  ·  modules/caddytls/capools.go::PKIIntermediateCAPool

PKIIntermediateCAPool extracts the trusted intermediate certificates from Caddy's native 'pki' app

Source from the content-addressed store, hash-verified

295
296// PKIIntermediateCAPool extracts the trusted intermediate certificates from Caddy's native 'pki' app
297type PKIIntermediateCAPool struct {
298 // List of the Authority names that are configured in the `pki` app whose intermediate certificates are trusted
299 Authority []string `json:"authority,omitempty"`
300
301 ca []*caddypki.CA
302 pool *x509.CertPool
303 certs []*x509.Certificate
304}
305
306// CaddyModule implements caddy.Module.
307func (PKIIntermediateCAPool) CaddyModule() caddy.ModuleInfo {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected