-
Notifications
You must be signed in to change notification settings - Fork 0
/
certs.go
154 lines (144 loc) · 4.54 KB
/
certs.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
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package certs
import (
"bytes"
"crypto"
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"crypto/x509/pkix"
"encoding/pem"
"errors"
"fmt"
"math/big"
"time"
)
// GenerateCACert generates a self-signed CA certificate and a corresponding
// private key.
//
// The returned certificate has a one-year validity and is attributed to a fake
// authority. As such, it should only ever be used on a temporary basis and for
// in-process certificate signing.
func GenerateCACert() (*x509.Certificate, crypto.PrivateKey, error) {
return generateLeafCert(true /*isCA*/, "ca")
}
// GenerateSignedCert generates a certificate for the given DNS names, signed
// by the given Certificate Authority, and a corresponding private key.
//
// The returned certificate has a one-year validity and should only ever
// be used on a temporary basis.
func GenerateSignedCert(ca *x509.Certificate, caKey crypto.PrivateKey, names ...string) (*x509.Certificate, crypto.PrivateKey, error) {
// Create an unsigned certificate.
unsigned, certKey, err := generateLeafCert(false /*isCA*/, names...)
if err != nil {
return nil, nil, err
}
certDER, err := x509.CreateCertificate(rand.Reader, unsigned, ca, unsigned.PublicKey, caKey)
if err != nil {
return nil, nil, err
}
cert, err := x509.ParseCertificate(certDER)
if err != nil {
return nil, nil, err
}
return cert, certKey, nil
}
func generateLeafCert(isCA bool, names ...string) (*x509.Certificate, crypto.PrivateKey, error) {
priv, err := rsa.GenerateKey(rand.Reader, 4096)
if err != nil {
return nil, nil, err
}
serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
if err != nil {
return nil, nil, err
}
keyUsage := x509.KeyUsageDigitalSignature | x509.KeyUsageKeyEncipherment
if isCA {
keyUsage |= x509.KeyUsageCertSign
}
template := x509.Certificate{
SerialNumber: serialNumber,
Subject: pkix.Name{Organization: []string{"ACME Co."}},
NotBefore: time.Now(),
NotAfter: time.Now().Add(365 * 24 * time.Hour),
KeyUsage: keyUsage,
ExtKeyUsage: []x509.ExtKeyUsage{
x509.ExtKeyUsageClientAuth,
x509.ExtKeyUsageServerAuth,
},
BasicConstraintsValid: true,
IsCA: isCA,
DNSNames: names,
}
certDER, err := x509.CreateCertificate(rand.Reader, &template, &template, &priv.PublicKey, priv)
if err != nil {
return nil, nil, err
}
cert, err := x509.ParseCertificate(certDER)
if err != nil {
return nil, nil, err
}
return cert, priv, nil
}
// PEMEncode returns the PEM-encoded blocks for the given certificate and
// private key.
func PEMEncode(cert *x509.Certificate, key crypto.PrivateKey) ([]byte, []byte, error) {
keyDER, err := x509.MarshalPKCS8PrivateKey(key)
if err != nil {
return nil, nil, err
}
var certOut bytes.Buffer
if err := pem.Encode(&certOut, &pem.Block{
Type: "CERTIFICATE",
Bytes: cert.Raw,
}); err != nil {
return nil, nil, err
}
var keyOut bytes.Buffer
if err := pem.Encode(&keyOut, &pem.Block{
Type: "PRIVATE KEY",
Bytes: keyDER,
}); err != nil {
return nil, nil, err
}
return certOut.Bytes(), keyOut.Bytes(), nil
}
// VerifySignedCert verifies the given signed certificate using the given
// root CA, returning the DNS names stored in the leaf certificate.
func VerifySignedCert(certDER []byte, ca *x509.Certificate) ([]string, error) {
caCertPool := x509.NewCertPool()
caCertPool.AddCert(ca)
opts := x509.VerifyOptions{
Roots: caCertPool,
CurrentTime: time.Now(),
}
cert, err := x509.ParseCertificate(certDER)
if err != nil {
return nil, errors.New("bad certificate")
}
verifiedCerts, err := cert.Verify(opts)
if err != nil {
return nil, errors.New("couldn't verify certificate chain")
}
if len(verifiedCerts) != 1 {
return nil, fmt.Errorf("expected a single verified chain, got %d", len(verifiedCerts))
}
verifiedCert := verifiedCerts[0]
if len(verifiedCert) < 1 { // should never happen
return nil, fmt.Errorf("empty verified chain")
}
return verifiedCert[0].DNSNames, nil
}