forked from vmware/vic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keypair.go
127 lines (100 loc) · 2.85 KB
/
keypair.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
// Copyright 2016 VMware, Inc. All Rights Reserved.
//
// 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 certificate
import (
"bytes"
"crypto/tls"
"io/ioutil"
"github.com/vmware/vic/pkg/errors"
)
type KeyPair struct {
KeyPEM []byte
CertPEM []byte
KeyFile string
CertFile string
}
func NewKeyPair(certFile, keyFile string, certPEM, keyPEM []byte) *KeyPair {
return &KeyPair{
KeyPEM: keyPEM,
CertPEM: certPEM,
KeyFile: keyFile,
CertFile: certFile,
}
}
func (kp *KeyPair) LoadCertificate() error {
c, err := ioutil.ReadFile(kp.CertFile)
if err != nil {
return err
}
k, err := ioutil.ReadFile(kp.KeyFile)
if err != nil {
return err
}
kp.CertPEM = c
kp.KeyPEM = k
return nil
}
func (kp *KeyPair) SaveCertificate() error {
return saveCertificate(kp.CertFile, kp.KeyFile, bytes.NewBuffer(kp.CertPEM), bytes.NewBuffer(kp.KeyPEM))
}
func (kp *KeyPair) CreateSelfSigned(domain string, org []string, size int) error {
c, k, err := CreateSelfSigned(domain, org, size)
if err != nil {
return err
}
kp.CertPEM = c.Bytes()
kp.KeyPEM = k.Bytes()
return nil
}
func (kp *KeyPair) CreateRootCA(domain string, org []string, size int) error {
c, k, err := CreateRootCA(domain, org, size)
if err != nil {
return err
}
kp.CertPEM = c.Bytes()
kp.KeyPEM = k.Bytes()
return nil
}
func (kp *KeyPair) CreateServerCertificate(domain string, org []string, size int, ca *KeyPair) error {
c, k, err := CreateServerCertificate(domain, org, size, ca.CertPEM, ca.KeyPEM)
if err != nil {
return err
}
kp.CertPEM = c.Bytes()
kp.KeyPEM = k.Bytes()
return nil
}
func (kp *KeyPair) CreateClientCertificate(domain string, org []string, size int, ca *KeyPair) error {
c, k, err := CreateClientCertificate(domain, org, size, ca.CertPEM, ca.KeyPEM)
if err != nil {
return err
}
kp.CertPEM = c.Bytes()
kp.KeyPEM = k.Bytes()
return nil
}
// Certificate turns the KeyPair back into useful TLS constructs
// This attempts to populate the certificate.Leaf field with the x509 certificate for convenience
func (kp *KeyPair) Certificate() (*tls.Certificate, error) {
if kp.CertPEM == nil || kp.KeyPEM == nil {
return nil, errors.New("KeyPair has no data")
}
cert, err := tls.X509KeyPair(kp.CertPEM, kp.KeyPEM)
if err != nil {
return nil, err
}
// #nosec: Errors unhandled.
cert.Leaf, _, _ = ParseCertificate(kp.CertPEM, kp.KeyPEM)
return &cert, nil
}