-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathencrypt.go
261 lines (243 loc) · 6.56 KB
/
encrypt.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
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
// encryptCmd represents the 'enc' command.
var encryptCmd = &cobra.Command{
Use: "enc [FILE]",
Short: "encrypt secrets with barbican key",
Long: `This command encrypts the contents of a given secrets yaml file.
The resulting file can then be safely committed to version control.
This is a low level command which most times is not required, with
'view' and 'edit' being preferred.`,
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
secretsFile := args[0]
content, err := ioutil.ReadFile(secretsFile)
if err != nil {
log.Fatalf("encrypt failed : %v", err)
}
if b64Encoded(string(content)) {
log.Fatal("content is empty or already encrypted")
}
client, err := newKeyManager()
if err != nil {
log.Fatalf("could not init client :: %v", err)
}
key, nonce, err := fetchKey(client, releaseName())
if err != nil {
log.Fatalf("could not fetch key : %v", err)
}
result, err := encrypt(key, nonce, content)
err = ioutil.WriteFile(secretsFile, result, 0644)
if err != nil {
log.Fatalf("encrypt failed : %v", err)
}
},
}
// decryptCmd represents the 'dec' command
var decryptCmd = &cobra.Command{
Use: "dec [FILE]",
Short: "decrypt secrets with barbican key",
Long: `This command decrypts the contents of a given secrets yaml file.
This is a low level command which most times is not required, with 'view'
and 'edit' being preferred.`,
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
secretsFile := args[0]
content, err := ioutil.ReadFile(secretsFile)
if err != nil {
log.Fatalf("decrypt failed : %v", err)
}
if !b64Encoded(string(content)) {
log.Fatal("not touching unencrypted content")
}
client, err := newKeyManager()
if err != nil {
log.Fatalf("could not init client :: %v", err)
}
key, nonce, err := fetchKey(client, releaseName())
if err != nil {
log.Fatalf("could not get key : %v", err)
}
plain, err := decrypt(key, nonce, string(content))
if err != nil {
log.Fatalf("decrypt failed : %v", err)
}
err = ioutil.WriteFile(secretsFile, plain, 0644)
if err != nil {
log.Fatalf("could not write file : %v", err)
}
},
}
// viewCmd represents the 'view' command.
var viewCmd = &cobra.Command{
Use: "view [FILE]",
Short: "decrypt and display secrets",
Long: `This command decrypts the contents of a given secrets yaml file,
and displays them in stdout. The contents are never stored unencrypted.`,
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
secretsFile := args[0]
content, err := ioutil.ReadFile(secretsFile)
if err != nil {
log.Fatalf("decrypt failed : %v", err)
}
if b64Encoded(string(content)) {
client, err := newKeyManager()
if err != nil {
log.Fatalf("could not init client :: %v", err)
}
key, nonce, err := fetchKey(client, releaseName())
if err != nil {
log.Fatalf("could not get key :: %v", err)
}
content, err = decrypt(key, nonce, string(content))
if err != nil {
log.Fatalf("decrypt failed : %v", err)
}
}
fmt.Printf("%v", string(content))
},
}
// editCmd
var editCmd = &cobra.Command{
Use: "edit [FILE]",
Short: "edit secrets",
Long: `This command launches the system configured editor with the
contents of a given secrets yaml file. The contents are decrypted for
editing and encrypted on exit.`,
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
secretsFile := args[0]
client, err := newKeyManager()
if err != nil {
log.Fatalf("could not init client :: %v", err)
}
key, nonce, err := fetchKey(client, releaseName())
if err != nil {
log.Fatalf("could not fetch key : %v", err)
}
content, err := ioutil.ReadFile(secretsFile)
if err != nil && !os.IsNotExist(err) {
log.Fatalf("decrypt failed : %v", err)
}
if b64Encoded(string(content)) {
content, err = decrypt(key, nonce, string(content))
if err != nil {
log.Fatalf("decrypt failed : %v", err)
}
}
ed, err := NewEditor()
if err != nil {
log.Fatalf("failed to find editor %v", err)
}
result, _, err := ed.LaunchTemp(strings.NewReader(string(content)))
if err != nil {
log.Fatalf("failed to open tmp file : %v", err)
}
encrypted, err := encrypt(key, nonce, result)
if err != nil {
log.Fatalf("failed to encrypt contents : %v", err)
}
err = ioutil.WriteFile(secretsFile, encrypted, 0600)
if err != nil {
log.Fatalf("failed to encrypt : %v", err)
}
},
}
func newKey() (string, string, error) {
key := make([]byte, 32)
_, err := rand.Read(key)
if err != nil {
return "", "", err
}
nonce := make([]byte, 12)
if _, err := io.ReadFull(rand.Reader, nonce); err != nil {
return "", "", err
}
return base64.StdEncoding.EncodeToString(key), base64.StdEncoding.EncodeToString(nonce), nil
}
func encrypt(b64key string, b64nonce string, payload []byte) ([]byte, error) {
key, err := base64.StdEncoding.DecodeString(b64key)
if err != nil {
return nil, err
}
nonce, err := base64.StdEncoding.DecodeString(b64nonce)
if err != nil {
return nil, err
}
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
aesgcm, err := cipher.NewGCM(block)
if err != nil {
return nil, err
}
sealed := aesgcm.Seal(nil, nonce, payload, nil)
result := make([]byte, base64.StdEncoding.EncodedLen(len(sealed)))
base64.StdEncoding.Encode(result, sealed)
return result, nil
}
func decrypt(b64key string, b64nonce string, b64payload string) ([]byte, error) {
if b64payload == "" {
return []byte{}, nil
}
key, err := base64.StdEncoding.DecodeString(b64key)
if err != nil {
return nil, err
}
nonce, err := base64.StdEncoding.DecodeString(b64nonce)
if err != nil {
return nil, err
}
payload, err := base64.StdEncoding.DecodeString(b64payload)
if err != nil {
return nil, err
}
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
aesgcm, err := cipher.NewGCM(block)
if err != nil {
return nil, err
}
plain, err := aesgcm.Open(nil, nonce, payload, nil)
if err != nil {
return nil, err
}
return plain, nil
}
func b64Encoded(content string) bool {
_, err := base64.StdEncoding.DecodeString(content)
if err == nil {
return true
}
return false
}
func releaseName() string {
if Release != "" {
return Release
}
d, _ := os.Getwd()
return filepath.Base(d)
}
func init() {
RootCmd.AddCommand(encryptCmd)
RootCmd.AddCommand(decryptCmd)
RootCmd.AddCommand(viewCmd)
RootCmd.AddCommand(editCmd)
}