What version of Go are you using (go version)?
$ go version
go version go1.15.6 darwin/amd64
Does this issue reproduce with the latest release?
yes.
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/******/Library/Caches/go-build"
GOENV="/Users/******/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GOMODCACHE="/Users/******/go/pkg/mod"
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/******/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/nm/1lmrr0s56lvb_00hv_ydg3300000gn/T/go-build015401011=/tmp/go-build -gno-record-gcc-switches -fno-common"
What did you do?
package main
import (
"crypto/x509"
"encoding/pem"
"fmt"
)
const badCerts = `-----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----`
func useParseCertificate(certpem string) {
block, _ := pem.Decode([]byte(certpem))
if block == nil {
fmt.Printf("Failed in parsing pem string\n")
return
}
cert, err := x509.ParseCertificate(block.Bytes)
fmt.Printf("Certificate: %v, Error: %v\n", cert, err)
}
func useParseCertificates(certpem string) {
block, _ := pem.Decode([]byte(certpem))
if block == nil {
fmt.Printf("Failed in parsing pem string\n")
return
}
certs, err := x509.ParseCertificates(block.Bytes)
fmt.Printf("Certificates: %v, Error: %v\n", certs, err)
}
func main() {
useParseCertificate(badCerts)
useParseCertificates(badCerts)
}
What did you expect to see?
Both x509.ParseCertificate and x509.ParseCertificates return non-nil error.
What did you see instead?
x509.ParseCertificate returns a non-nil error while x509.ParseCertificates returns nil for error.
Output
Certificate: <nil>, Error: asn1: syntax error: sequence truncated
Certificates: [], Error: <nil>
It could be argued that x509.ParserCertificates returns empty slice in this case, but I don't think it can justify a "nil" error. Especially, the returned results are inconsistent here.
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
yes.
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
What did you expect to see?
Both
x509.ParseCertificateandx509.ParseCertificatesreturn non-nil error.What did you see instead?
x509.ParseCertificatereturns a non-nil error whilex509.ParseCertificatesreturnsnilfor error.Output
It could be argued that
x509.ParserCertificatesreturns empty slice in this case, but I don't think it can justify a "nil" error. Especially, the returned results are inconsistent here.