-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcertgen.go
241 lines (213 loc) · 6.72 KB
/
certgen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Generate a self-signed X.509 certificate for a TLS server. Outputs to
// 'public.crt' and 'private.key' and will overwrite existing files.
package main
import (
"crypto/ecdsa"
"crypto/ed25519"
"crypto/elliptic"
"crypto/rand"
"crypto/x509"
"crypto/x509/pkix"
"encoding/pem"
"flag"
"fmt"
"log"
"math/big"
"net"
"net/mail"
"net/url"
"os"
"os/user"
"regexp"
"strings"
"time"
)
var version = "(dev)"
var (
host = flag.String("host", "", "Comma-separated hostnames and IPs to generate a certificate for")
ecdsaCurve = flag.String("ecdsa-curve", "P256", "ECDSA curve to use to generate a key. Valid values are P224, P256 (recommended), P384, P521")
ed25519Key = flag.Bool("ed25519", false, "Generate an Ed25519 key")
orgName = flag.String("org-name", "Certgen Development", "Organization name used when generating the certs")
commonName = flag.String("common-name", "", "Common name for client cert")
isNoCA = flag.Bool("no-ca", false, "whether this cert should not be its own Certificate Authority")
isClient = flag.Bool("client", false, "whether this cert is a client certificate")
validFrom = flag.String("start-date", "", "Creation date formatted as Jan 1 15:04:05 2011")
validFor = flag.Duration("duration", 365*24*time.Hour, "Duration that certificate is valid for")
)
func publicKey(priv interface{}) interface{} {
switch k := priv.(type) {
case *ecdsa.PrivateKey:
return &k.PublicKey
case ed25519.PrivateKey:
return k.Public().(ed25519.PublicKey)
default:
return nil
}
}
var userAndHostname string
func init() {
u, err := user.Current()
if err == nil {
userAndHostname = u.Username + "@"
}
if h, err := os.Hostname(); err == nil {
userAndHostname += h
}
if err == nil && u.Name != "" && u.Name != u.Username {
userAndHostname += " (" + u.Name + ")"
}
}
func main() {
flag.Parse()
if len(*host) == 0 {
log.Fatalf("Missing required --host parameter")
}
var priv interface{}
var err error
switch *ecdsaCurve {
case "":
if *ed25519Key {
_, priv, err = ed25519.GenerateKey(rand.Reader)
}
case "P224":
priv, err = ecdsa.GenerateKey(elliptic.P224(), rand.Reader)
case "P256":
priv, err = ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
case "P384":
priv, err = ecdsa.GenerateKey(elliptic.P384(), rand.Reader)
case "P521":
priv, err = ecdsa.GenerateKey(elliptic.P521(), rand.Reader)
default:
log.Fatalf("Unrecognized elliptic curve: %q", *ecdsaCurve)
}
if err != nil {
log.Fatalf("Failed to generate private key: %v", err)
}
// ECDSA, ED25519 subject keys should have the DigitalSignature
// KeyUsage bits set in the x509.Certificate template
keyUsage := x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature
var notBefore time.Time
if len(*validFrom) == 0 {
notBefore = time.Now()
} else {
notBefore, err = time.Parse("Jan 2 15:04:05 2006", *validFrom)
if err != nil {
log.Fatalf("Failed to parse creation date: %v", err)
}
}
notAfter := notBefore.Add(*validFor)
serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
if err != nil {
log.Fatalf("Failed to generate serial number: %v", err)
}
template := x509.Certificate{
SerialNumber: serialNumber,
Subject: pkix.Name{
Organization: []string{*orgName},
OrganizationalUnit: []string{userAndHostname},
},
NotBefore: notBefore,
NotAfter: notAfter,
KeyUsage: keyUsage,
BasicConstraintsValid: true,
}
if *isClient {
if *commonName != "" {
template.Subject.CommonName = *commonName
}
}
hosts := strings.Split(*host, ",")
for _, h := range hosts {
h = strings.TrimSpace(h)
if h == "" {
continue
}
if ip := net.ParseIP(h); ip != nil {
template.IPAddresses = append(template.IPAddresses, ip)
} else if email, err := mail.ParseAddress(h); err == nil && email.Address == h {
template.EmailAddresses = append(template.EmailAddresses, h)
} else if uriName, err := url.Parse(h); err == nil && uriName.Scheme != "" && uriName.Host != "" {
template.URIs = append(template.URIs, uriName)
} else {
template.DNSNames = append(template.DNSNames, h)
}
}
if len(template.IPAddresses) > 0 || len(template.DNSNames) > 0 || len(template.URIs) > 0 {
template.ExtKeyUsage = append(template.ExtKeyUsage, x509.ExtKeyUsageServerAuth)
}
if len(template.EmailAddresses) > 0 {
template.ExtKeyUsage = append(template.ExtKeyUsage, x509.ExtKeyUsageEmailProtection)
}
if *isClient {
template.ExtKeyUsage = append(template.ExtKeyUsage, x509.ExtKeyUsageClientAuth)
} else if !*isNoCA {
template.IsCA = true
template.KeyUsage |= x509.KeyUsageCertSign
}
pkey := publicKey(priv)
if pkey == nil {
log.Fatalln("Failed to create certificate: publicKey is nil")
}
derBytes, err := x509.CreateCertificate(rand.Reader, &template, &template, pkey, priv)
if err != nil {
log.Fatalf("Failed to create certificate: %v", err)
}
certName := "public.crt"
if *isClient {
certName = "client.crt"
}
certOut, err := os.Create(certName)
if err != nil {
log.Fatalf("Failed to open %s for writing: %v", certName, err)
}
if err := pem.Encode(certOut, &pem.Block{Type: "CERTIFICATE", Bytes: derBytes}); err != nil {
log.Fatalf("Failed to write data to %s: %v", certName, err)
}
if err := certOut.Close(); err != nil {
log.Fatalf("Error closing %s: %v", certName, err)
}
certKey := "private.key"
if *isClient {
certKey = "client.key"
}
keyOut, err := os.OpenFile(certKey, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600)
if err != nil {
log.Fatalf("Failed to open %s for writing: %v", certKey, err)
}
privBytes, err := x509.MarshalPKCS8PrivateKey(priv)
if err != nil {
log.Fatalf("Unable to marshal %s: %v", certKey, err)
}
if err := pem.Encode(keyOut, &pem.Block{Type: "PRIVATE KEY", Bytes: privBytes}); err != nil {
log.Fatalf("Failed to write data to %s: %v", certKey, err)
}
if err := keyOut.Close(); err != nil {
log.Fatalf("Error closing %s: %v", certKey, err)
}
secondLvlWildcardRegexp := regexp.MustCompile(`(?i)^\*\.[0-9a-z_-]+$`)
fmt.Printf("Created a new certificate '%v', '%v' valid for the following names 📜\n", certName, certKey)
for _, h := range hosts {
h = strings.TrimSpace(h)
if h == "" {
continue
}
fmt.Printf(" - %q\n", h)
if secondLvlWildcardRegexp.MatchString(h) {
fmt.Printf(" Warning: many browsers don't support second-level wildcards like %q ⚠️\n", h)
}
}
for _, h := range hosts {
h = strings.TrimSpace(h)
if h == "" {
continue
}
if strings.HasPrefix(h, "*.") {
fmt.Printf("\nReminder: X.509 wildcards only go one level deep, so this won't match a.b.%s ℹ️\n", h[2:])
break
}
}
}