forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
crypto.go
73 lines (64 loc) · 1.58 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
package util
import (
"bytes"
"crypto/x509"
"encoding/pem"
"fmt"
"io/ioutil"
"k8s.io/client-go/util/cert"
)
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 := cert.ParseCertsPEM(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 := cert.ParseCertsPEM(pemBlock)
if err != nil {
return nil, fmt.Errorf("Error reading %s: %s", file, err)
}
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
}