1
0
mirror of https://github.com/golang/go synced 2024-10-02 02:18:33 -06:00

crypto/x509: correct default X.509 version.

The default version of an X.509 certificate is v1, which is encoded on
the wire as a zero.

Fixes #13382.

Change-Id: I5fd725c3fc8b08fd978ab694a3e2d6d2a495918b
Reviewed-on: https://go-review.googlesource.com/20548
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Adam Langley 2016-03-10 15:12:19 -08:00
parent 1c2bdfb7d9
commit 1b8d4caddb

View File

@ -126,7 +126,7 @@ type certificate struct {
type tbsCertificate struct { type tbsCertificate struct {
Raw asn1.RawContent Raw asn1.RawContent
Version int `asn1:"optional,explicit,default:1,tag:0"` Version int `asn1:"optional,explicit,default:0,tag:0"`
SerialNumber *big.Int SerialNumber *big.Int
SignatureAlgorithm pkix.AlgorithmIdentifier SignatureAlgorithm pkix.AlgorithmIdentifier
Issuer asn1.RawValue Issuer asn1.RawValue