GetOCSPCert should fail if there are no OCSP servers in the cert.

This commit is contained in:
Chris Moos 2016-02-06 23:19:32 -07:00
parent 1bb7d54178
commit 7bdc9e26f7

View file

@ -90,6 +90,10 @@ func GetOCSPForCert(bundle []byte) ([]byte, *ocsp.Response, error) {
issuedCert := certificates[0]
issuerCert := certificates[1]
if len(issuedCert.OCSPServer) == 0 {
return nil, nil, errors.New("no OCSP server specified in cert")
}
// Finally kick off the OCSP request.
ocspReq, err := ocsp.CreateRequest(issuedCert, issuerCert, nil)
if err != nil {