소스 검색

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