PKIIntermediateCAPool extracts the trusted intermediate certificates from Caddy's native 'pki' app
| 295 | |
| 296 | // PKIIntermediateCAPool extracts the trusted intermediate certificates from Caddy's native 'pki' app |
| 297 | type 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. |
| 307 | func (PKIIntermediateCAPool) CaddyModule() caddy.ModuleInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected