crypto/tls: update generate_cert.go for new time package
Fixes #2635. R=golang-dev, iant CC=golang-dev https://golang.org/cl/5512043
This commit is contained in:
parent
1b80fdc11d
commit
9e8d625b7c
@ -31,7 +31,7 @@ func main() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
now := time.Seconds()
|
now := time.Now()
|
||||||
|
|
||||||
template := x509.Certificate{
|
template := x509.Certificate{
|
||||||
SerialNumber: new(big.Int).SetInt64(0),
|
SerialNumber: new(big.Int).SetInt64(0),
|
||||||
@ -39,8 +39,8 @@ func main() {
|
|||||||
CommonName: *hostName,
|
CommonName: *hostName,
|
||||||
Organization: []string{"Acme Co"},
|
Organization: []string{"Acme Co"},
|
||||||
},
|
},
|
||||||
NotBefore: time.SecondsToUTC(now - 300),
|
NotBefore: now.Add(-5 * time.Minute).UTC(),
|
||||||
NotAfter: time.SecondsToUTC(now + 60*60*24*365), // valid for 1 year.
|
NotAfter: now.AddDate(1, 0, 0).UTC(), // valid for 1 year.
|
||||||
|
|
||||||
SubjectKeyId: []byte{1, 2, 3, 4},
|
SubjectKeyId: []byte{1, 2, 3, 4},
|
||||||
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
|
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
|
||||||
|
Loading…
Reference in New Issue
Block a user