Documentation ¶
Overview ¶
Implementation of an OCSP responder defined by RFC 6960
Index ¶
Constants ¶
View Source
const ( StatusValid = 'V' StatusRevoked = 'R' StatusExpired = 'E' )
I only know of two types, but more can be added later
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IndexEntry ¶
type OCSPResponder ¶
type OCSPResponder struct { IndexFile string RespKeyFile string RespCertFile string CaCertFile string LogFile string LogToStdout bool Strict bool Port int Address string Ssl bool IndexEntries []IndexEntry IndexModTime time.Time CaCert *x509.Certificate RespCert *x509.Certificate NonceList [][]byte }
func Responder ¶
func Responder() *OCSPResponder
I decided on these defaults based on what I was using
func (*OCSPResponder) Serve ¶
func (self *OCSPResponder) Serve() error
setup an ocsp server instance with configured values
Click to show internal directories.
Click to hide internal directories.