config.go 336 B

1234567891011121314
  1. // Package config in the ocsp directory provides configuration data for an OCSP
  2. // signer.
  3. package config
  4. import "time"
  5. // Config contains configuration information required to set up an OCSP signer.
  6. type Config struct {
  7. CACertFile string
  8. ResponderCertFile string
  9. KeyFile string
  10. Interval time.Duration
  11. }