-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
crypto_utils.go
292 lines (255 loc) · 8.45 KB
/
crypto_utils.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package ios
import (
"crypto"
"crypto/rand"
"crypto/rsa"
"crypto/sha1"
"crypto/x509"
"crypto/x509/pkix"
"encoding/asn1"
"encoding/pem"
"errors"
"fmt"
"math/big"
"time"
"github.com/fullsailor/pkcs7"
)
const bitSize = 2048
func createRootCertificate(publicKeyBytes []byte) ([]byte, []byte, []byte, []byte, []byte, error) {
rootKeyPair, rootCertBytes, rootCert, err := createRootCert()
if err != nil {
return nil, nil, nil, nil, nil, err
}
hostKeyPair, hostCertBytes, err := createHostCert(rootCert, rootKeyPair)
if err != nil {
return nil, nil, nil, nil, nil, err
}
deviceCertBytes, err := createDeviceCert(publicKeyBytes, rootCert, rootKeyPair)
if err != nil {
return nil, nil, nil, nil, nil, err
}
return certBytesToPEM(rootCertBytes), certBytesToPEM(hostCertBytes), certBytesToPEM(deviceCertBytes), savePEMKey(rootKeyPair), savePEMKey(hostKeyPair), nil
}
func createRootCert() (*rsa.PrivateKey, []byte, *x509.Certificate, error) {
rootKeyPair, err := rsa.GenerateKey(rand.Reader, bitSize)
if err != nil {
return nil, nil, nil, err
}
var b big.Int
b.SetInt64(0)
rootCertTemplate := x509.Certificate{
SerialNumber: &b,
Subject: pkix.Name{},
NotBefore: time.Now(),
NotAfter: time.Now().AddDate(10, 0, 0),
SignatureAlgorithm: x509.SHA1WithRSA,
BasicConstraintsValid: true,
IsCA: true,
}
digestString, err := computeSKIKey(&rootKeyPair.PublicKey)
if err != nil {
return nil, nil, nil, err
}
// reminder: you cannot use the ExtraExtentions field here because for some reason
// that created invalid certificates that throw errors when I try to parse them
// with golang.
rootCertTemplate.Extensions = append(rootCertTemplate.Extensions, pkix.Extension{
Id: []int{2, 5, 29, 14},
Value: digestString,
})
rootCertBytes, err := x509.CreateCertificate(rand.Reader, &rootCertTemplate, &rootCertTemplate, &rootKeyPair.PublicKey, rootKeyPair)
if err != nil {
return nil, nil, nil, err
}
rootCert, err := x509.ParseCertificate(rootCertBytes)
if err != nil {
return nil, nil, nil, err
}
return rootKeyPair, rootCertBytes, rootCert, nil
}
func createHostCert(rootCert *x509.Certificate, rootKeyPair *rsa.PrivateKey) (*rsa.PrivateKey, []byte, error) {
var b big.Int
b.SetInt64(0)
hostCertTemplate := x509.Certificate{
SerialNumber: &b,
Subject: pkix.Name{},
NotBefore: time.Now(),
NotAfter: time.Now().AddDate(10, 0, 0),
SignatureAlgorithm: x509.SHA1WithRSA,
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
BasicConstraintsValid: true,
IsCA: false,
}
hostKeyPair, err := rsa.GenerateKey(rand.Reader, bitSize)
if err != nil {
return nil, nil, err
}
hostdigestString, err := computeSKIKey(&hostKeyPair.PublicKey)
if err != nil {
return nil, nil, err
}
hostCertTemplate.Extensions = append(hostCertTemplate.Extensions, pkix.Extension{
Id: []int{2, 5, 29, 14},
Value: hostdigestString,
},
)
hostCertBytes, err := x509.CreateCertificate(rand.Reader, &hostCertTemplate, rootCert, &hostKeyPair.PublicKey, rootKeyPair)
if err != nil {
return nil, nil, err
}
return hostKeyPair, hostCertBytes, nil
}
func createDeviceCert(publicKeyBytes []byte, rootCert *x509.Certificate, rootKeyPair *rsa.PrivateKey) ([]byte, error) {
block, _ := pem.Decode(publicKeyBytes)
if block == nil {
return nil, errors.New("failed to parse PEM block containing the public key")
}
var devicePublicKey rsa.PublicKey
_, err := asn1.Unmarshal(block.Bytes, &devicePublicKey)
if err != nil {
return nil, err
}
var b big.Int
b.SetInt64(0)
deviceCertTemplate := x509.Certificate{
SerialNumber: &b,
Subject: pkix.Name{},
NotBefore: time.Now(),
NotAfter: time.Now().AddDate(10, 0, 0),
SignatureAlgorithm: x509.SHA1WithRSA,
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
BasicConstraintsValid: true,
IsCA: false,
}
devicePublicKeyDigest, err := computeSKIKey(&devicePublicKey)
if err != nil {
return nil, err
}
deviceCertTemplate.Extensions = append(deviceCertTemplate.Extensions, pkix.Extension{
Id: []int{2, 5, 29, 14},
Value: devicePublicKeyDigest,
},
)
deviceCertBytes, err := x509.CreateCertificate(rand.Reader, &deviceCertTemplate, rootCert, &devicePublicKey, rootKeyPair)
if err != nil {
return nil, err
}
return deviceCertBytes, nil
}
type subjectPublicKeyInfo struct {
Algorithm pkix.AlgorithmIdentifier
SubjectPublicKey asn1.BitString
}
func computeSKIKey(pub *rsa.PublicKey) ([]byte, error) {
encodedPub, err := x509.MarshalPKIXPublicKey(pub)
if err != nil {
return nil, err
}
var subPKI subjectPublicKeyInfo
_, err = asn1.Unmarshal(encodedPub, &subPKI)
if err != nil {
return nil, err
}
pubHash := sha1.Sum(subPKI.SubjectPublicKey.Bytes)
return pubHash[:], nil
}
func certBytesToPEM(certBytes []byte) []byte {
pemCert := pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: certBytes})
return pemCert
}
func savePEMKey(key *rsa.PrivateKey) []byte {
privateKeyBytes := x509.MarshalPKCS1PrivateKey(key)
privateKeyPem := pem.EncodeToMemory(
&pem.Block{
Type: "RSA PRIVATE KEY",
Bytes: privateKeyBytes,
},
)
return privateKeyPem
}
func Sign(challengeBytes []byte, cert *x509.Certificate, supervisedPrivateKey interface{}) ([]byte, error) {
sd, err := pkcs7.NewSignedData(challengeBytes)
if err != nil {
return []byte{}, err
}
err = sd.AddSigner(cert, supervisedPrivateKey.(crypto.Signer), pkcs7.SignerInfoConfig{})
if err != nil {
return []byte{}, err
}
return sd.Finish()
}
// CaCertificate is a simple struct to hold a x509 cert and privateKey in DER and PEM formats
// as well as the CER should you need it.
type CaCertificate struct {
CertDER []byte
PrivateKeyDER []byte
Csr string
CertPEM []byte
PrivateKeyPEM []byte
}
// CreateDERFormattedSupervisionCert is a convenience function to generate DER and PEM formatted private key and cert to be used
// for device supervision.
// It basically does the same as these openSSL commands:
//
// openssl genrsa -des3 -out domain.key 2048
// openssl req -key domain.key -new -out domain.csr
// openssl x509 -signkey domain.key -in domain.csr -req -days 365 -out domain.crt
// openssl x509 -in domain.crt -outform der -out domain.der
// and returns the resulting certs in a CaCertificate struct.
//
// If you need p12 files, please save the PEMs to files and run this:
// openssl pkcs12 -export -inkey supervision-private-key.pem -in supervision-cert.pem -out certificate.p12 -password pass:a
func CreateDERFormattedSupervisionCert() (*CaCertificate, error) {
// step: generate a keypair
keys, err := rsa.GenerateKey(rand.Reader, bitSize)
if err != nil {
return nil, fmt.Errorf("unable to genarate private keys, error: %s", err)
}
// step: generate a csr template
csrTemplate := x509.CertificateRequest{
SignatureAlgorithm: x509.SHA512WithRSA,
ExtraExtensions: []pkix.Extension{
{
Id: asn1.ObjectIdentifier{2, 5, 29, 19},
Critical: true,
},
},
}
// step: generate the csr request
csrCertificate, err := x509.CreateCertificateRequest(rand.Reader, &csrTemplate, keys)
if err != nil {
return nil, err
}
csr := pem.EncodeToMemory(&pem.Block{
Type: "CERTIFICATE REQUEST", Bytes: csrCertificate,
})
// step: generate a serial number
serial, err := rand.Int(rand.Reader, (&big.Int{}).Exp(big.NewInt(2), big.NewInt(159), nil))
if err != nil {
return nil, err
}
now := time.Now()
// step: create the request template
template := x509.Certificate{
SerialNumber: serial,
// Subject: names,
NotBefore: now.Add(-10 * time.Minute).UTC(),
NotAfter: now.Add(time.Hour * 24 * 365 * 10).UTC(),
BasicConstraintsValid: true,
IsCA: true,
KeyUsage: x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth, x509.ExtKeyUsageClientAuth},
}
// step: sign the certificate authority
certificate, err := x509.CreateCertificate(rand.Reader, &template, &template, &keys.PublicKey, keys)
if err != nil {
return nil, fmt.Errorf("failed to generate certificate, error: %s", err)
}
return &CaCertificate{
CertDER: certificate,
PrivateKeyDER: x509.MarshalPKCS1PrivateKey(keys),
CertPEM: certBytesToPEM(certificate),
PrivateKeyPEM: savePEMKey(keys),
Csr: string(csr),
}, nil
}