forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crypto.go
100 lines (88 loc) · 2.1 KB
/
crypto.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
package util
import (
"bytes"
"crypto/x509"
"encoding/pem"
"errors"
"fmt"
"io/ioutil"
)
func CertPoolFromFile(filename string) (*x509.CertPool, error) {
pool := x509.NewCertPool()
if len(filename) == 0 {
return pool, nil
}
pemBlock, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
}
certs, err := CertificatesFromPEM(pemBlock)
if err != nil {
return nil, fmt.Errorf("Error reading %s: %s", filename, err)
}
for _, cert := range certs {
pool.AddCert(cert)
}
return pool, nil
}
func CertificatesFromFile(file string) ([]*x509.Certificate, error) {
if len(file) == 0 {
return nil, nil
}
pemBlock, err := ioutil.ReadFile(file)
if err != nil {
return nil, err
}
certs, err := CertificatesFromPEM(pemBlock)
if err != nil {
return nil, fmt.Errorf("Error reading %s: %s", file, err)
}
return certs, nil
}
func CertificatesFromPEM(pemCerts []byte) ([]*x509.Certificate, error) {
ok := false
certs := []*x509.Certificate{}
for len(pemCerts) > 0 {
var block *pem.Block
block, pemCerts = pem.Decode(pemCerts)
if block == nil {
break
}
if block.Type != "CERTIFICATE" || len(block.Headers) != 0 {
continue
}
cert, err := x509.ParseCertificate(block.Bytes)
if err != nil {
return certs, err
}
certs = append(certs, cert)
ok = true
}
if !ok {
return certs, errors.New("Could not read any certificates")
}
return certs, nil
}
// PrivateKeysFromPEM extracts all blocks recognized as private keys into an output PEM encoded byte array,
// or returns an error. If there are no private keys it will return an empty byte buffer.
func PrivateKeysFromPEM(pemCerts []byte) ([]byte, error) {
buf := &bytes.Buffer{}
for len(pemCerts) > 0 {
var block *pem.Block
block, pemCerts = pem.Decode(pemCerts)
if block == nil {
break
}
if len(block.Headers) != 0 {
continue
}
switch block.Type {
// defined in OpenSSL pem.h
case "RSA PRIVATE KEY", "PRIVATE KEY", "ANY PRIVATE KEY", "DSA PRIVATE KEY", "ENCRYPTED PRIVATE KEY", "EC PRIVATE KEY":
if err := pem.Encode(buf, block); err != nil {
return nil, err
}
}
}
return buf.Bytes(), nil
}