瀏覽代碼

crypto/oscp: update in light of cl/5625045

R=rsc
CC=golang-dev
https://golang.org/cl/5608055
Adam Langley 13 年之前
父節點
當前提交
ae4d10368a
共有 1 個文件被更改,包括 1 次插入1 次删除
  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