Przeglądaj źródła

crypto/oscp: update in light of cl/5625045

R=rsc
CC=golang-dev
https://golang.org/cl/5608055
Adam Langley 13 lat temu
rodzic
commit
ae4d10368a
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      ocsp/ocsp.go

+ 1 - 1
ocsp/ocsp.go

@@ -111,7 +111,7 @@ func (p ParseError) Error() string {
 
 // ParseResponse parses an OCSP response in DER form. It only supports
 // responses for a single certificate and only those using RSA signatures.
-// Non-RSA responses will result in an x509.UnsupportedAlgorithmError.
+// Non-RSA responses will result in x509.ErrUnsupportedAlgorithm.
 // Signature errors or parse failures will result in a ParseError.
 func ParseResponse(bytes []byte) (*Response, error) {
 	var resp responseASN1