ソースを参照

crypto/tls: fix generate_cert.go

Fixes #2030.

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/4635092
tls13
Adam Langley 13年前
コミット
9c8b32c2d6
1個のファイルの変更5行の追加3行の削除
  1. +5
    -3
      generate_cert.go

+ 5
- 3
generate_cert.go ファイルの表示

@@ -8,8 +8,10 @@
package main

import (
"crypto/rsa"
"big"
"crypto/x509/pkix"
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"flag"
@@ -32,8 +34,8 @@ func main() {
now := time.Seconds()

template := x509.Certificate{
SerialNumber: []byte{0},
Subject: x509.Name{
SerialNumber: new(big.Int).SetInt64(0),
Subject: pkix.Name{
CommonName: *hostName,
Organization: []string{"Acme Co"},
},


読み込み中…
キャンセル
保存