github.com/hellobchain/third_party@v0.0.0-20230331131523-deb0478a2e52/cloudflare/cfssl/ocsp/config/config.go (about)

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