-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathopenpgp.go
359 lines (313 loc) · 7.81 KB
/
openpgp.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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
package openpgp
import (
"bytes"
"crypto"
"crypto/sha1"
_ "crypto/sha512"
"encoding/binary"
"errors"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
"github.com/gokyle/readpass"
"golang.org/x/crypto/openpgp"
"golang.org/x/crypto/openpgp/armor"
"golang.org/x/crypto/openpgp/packet"
)
const Version = "0.1.0"
var (
DefaultPublicKeyRing = filepath.Join(os.Getenv("HOME"), ".gnupg", "pubring.gpg")
DefaultSecretKeyRing = filepath.Join(os.Getenv("HOME"), ".gnupg", "secring.gpg")
)
func SetKeyRingDir(dir string) {
PubRingPath = filepath.Join(dir, "pubring.gpg")
SecRingPath = filepath.Join(dir, "secring.gpg")
}
var (
ErrPubRing = errors.New("openpgp: public keyring")
ErrSecRing = errors.New("openpgp: secret keyring")
ErrSecStore = errors.New("openpgp: exporting secret keyring isn't supported'")
ErrKeyNotFound = errors.New("openpgp: key not found")
ErrInvalidPublicKey = errors.New("openpgp: invalid public key")
)
// Paths to the public and secret keyrings.
var (
PubRingPath = DefaultPublicKeyRing
SecRingPath = DefaultSecretKeyRing
)
// SaneDefaultConfig is a more secure default config than the defaults.
func ParanoidDefaultConfig() *packet.Config {
return &packet.Config{
DefaultHash: crypto.SHA384,
DefaultCipher: packet.CipherAES256,
DefaultCompressionAlgo: packet.CompressionZLIB,
CompressionConfig: &packet.CompressionConfig{-1},
}
}
var DefaultConfig *packet.Config
// A KeyRing contains a list of entities and the state required to
// maintain the key ring.
type KeyRing struct {
Entities map[string]*openpgp.Entity
path string
private bool
}
// Private returns true if the keyring contains secret key material.
func (keyRing *KeyRing) Private() bool {
return keyRing.private
}
func (keyRing *KeyRing) Entity(keyID string) (e *openpgp.Entity) {
return keyRing.Entities[strings.ToLower(keyID)]
}
// LoadKeyRing reads the unarmoured keyring stored at the named path.
func LoadKeyRing(path string) (keyRing *KeyRing, err error) {
file, err := os.Open(path)
if err != nil {
return
}
defer file.Close()
el, err := openpgp.ReadKeyRing(file)
if err != nil {
return
}
keyRing = new(KeyRing)
keyRing.path = path
keyRing.Entities = map[string]*openpgp.Entity{}
for _, e := range el {
if e.PrivateKey != nil {
keyRing.private = true
}
id := fmt.Sprintf("%x", e.PrimaryKey.Fingerprint)
keyRing.Entities[id] = e
}
return
}
// Store writes the keyring to disk as an unarmoured keyring.
func (keyRing *KeyRing) Store() (err error) {
if keyRing.private {
err = ErrSecStore
return
}
tempFile, err := ioutil.TempFile(filepath.Dir(keyRing.path), "openpgp")
if err != nil {
return
}
defer tempFile.Close()
for _, e := range keyRing.Entities {
err = e.Serialize(tempFile)
if err != nil {
tempFile.Close()
os.Remove(tempFile.Name())
return
}
}
tempFile.Close()
err = os.Rename(tempFile.Name(), keyRing.path)
if err != nil {
os.Remove(tempFile.Name())
}
return
}
// Import imports an armoured public key block.
func (keyRing *KeyRing) Import(armoured string) (n int, err error) {
buf := bytes.NewBufferString(armoured)
el, err := openpgp.ReadArmoredKeyRing(buf)
if err != nil {
return
}
for _, e := range el {
if keyRing.private && e.PrivateKey == nil {
err = ErrSecRing
return
} else if !keyRing.private && e.PrivateKey != nil {
err = ErrPubRing
return
}
for name, id := range e.Identities {
err = e.PrimaryKey.VerifyUserIdSignature(name, e.PrimaryKey, id.SelfSignature)
if err != nil {
return
}
}
}
for _, e := range el {
id := fmt.Sprintf("%x", e.PrimaryKey.Fingerprint)
if _, ok := keyRing.Entities[id]; !ok {
keyRing.Entities[id] = e
n++
}
}
return
}
// Export writes out the named public key, or all public keys if keyID
// is empty. The result is an ASCII-armoured public key.
func (keyRing *KeyRing) Export(keyID string) (armoured string, err error) {
buf := new(bytes.Buffer)
blockType := openpgp.PublicKeyType
blockHeaders := map[string]string{
"Version": fmt.Sprintf("Keybase Go client (OpenPGP version %s)", Version),
}
armourBuffer, err := armor.Encode(buf, blockType, blockHeaders)
if err != nil {
return
}
if keyID != "" {
e, ok := keyRing.Entities[strings.ToLower(keyID)]
if !ok {
err = ErrKeyNotFound
return
}
e.Serialize(armourBuffer)
} else {
if len(keyRing.Entities) == 0 {
err = ErrKeyNotFound
return
}
for _, e := range keyRing.Entities {
e.Serialize(armourBuffer)
}
}
armourBuffer.Close()
armoured = string(buf.Bytes())
return
}
// Unlock decrypts the secured key, reading the passphrase from the
// command line.
func (keyRing *KeyRing) Unlock(keyID string) (err error) {
e, ok := keyRing.Entities[strings.ToLower(keyID)]
if !ok || e.PrivateKey == nil {
err = ErrKeyNotFound
return
}
if !e.PrivateKey.Encrypted {
return
}
var id string
for k := range e.Identities {
id = k
break
}
prompt := fmt.Sprintf(`Please enter the passphrase for the key:
%s
%x
Enter passphrase: `, id, e.PrimaryKey.KeyId)
passphrase, err := readpass.PasswordPromptBytes(prompt)
if err != nil {
return
}
err = e.PrivateKey.Decrypt(passphrase)
return
}
// Sign signs the given message.
func (keyRing *KeyRing) Sign(message []byte, keyID string) (sig []byte, err error) {
err = keyRing.Unlock(keyID)
if err != nil {
return
}
signer := keyRing.Entities[strings.ToLower(keyID)]
buf := new(bytes.Buffer)
hdr := map[string]string{
"Version": fmt.Sprintf("Keybase Go client (OpenPGP version %s)", Version),
}
armourBuf, err := armor.Encode(buf, "PGP MESSAGE", hdr)
if err != nil {
return
}
opSig := &packet.OnePassSignature{
SigType: packet.SigTypeBinary,
Hash: crypto.SHA1,
PubKeyAlgo: packet.PubKeyAlgoRSA,
KeyId: signer.PrimaryKey.KeyId,
IsLast: true,
}
err = opSig.Serialize(armourBuf)
if err != nil {
return
}
literalPacket, err := newLiteralDataPacket(message, "", uint32(time.Now().Unix()))
if err != nil {
return
}
_, err = armourBuf.Write(literalPacket)
if err != nil {
return
}
sigPacket := &packet.Signature{
SigType: packet.SigTypeBinary,
IssuerKeyId: &signer.PrimaryKey.KeyId,
PubKeyAlgo: packet.PubKeyAlgoRSA,
Hash: crypto.SHA1,
CreationTime: time.Now(),
}
h := sha1.New()
h.Write(message)
err = sigPacket.Sign(h, signer.PrivateKey, nil)
if err != nil {
return
}
err = sigPacket.Serialize(armourBuf)
if err != nil {
return
}
armourBuf.Close()
sig = buf.Bytes()
return
}
// NewEntity creates a new entity. It doesn't provide an option for comments.
func NewEntity(name, email, outFile string) (ne *openpgp.Entity, err error) {
ne, err = openpgp.NewEntity(name, "", email, DefaultConfig)
if err != nil {
return
}
out, err := os.Create(outFile)
if err != nil {
ne = nil
return
}
hdr := map[string]string{
"Version": fmt.Sprintf("Keybase Go client (OpenPGP version %s)", Version),
}
keyOut, err := armor.Encode(out, openpgp.PrivateKeyType, hdr)
if err != nil {
ne = nil
return
}
defer func() {
keyOut.Close()
out.Close()
}()
err = ne.SerializePrivate(keyOut, DefaultConfig)
if err != nil {
ne = nil
return
}
return
}
func newLiteralDataPacket(literal []byte, fileName string, ts uint32) (pkt []byte, err error) {
var header = [3]byte{0x80}
header[0] |= (11 << 2)
header[0] |= 1
var timeStamp = uint32(time.Now().Unix())
var timeStampBytes [4]byte
binary.BigEndian.PutUint32(timeStampBytes[:], timeStamp)
if err != nil {
return
}
body := []byte("b")
body = append(body, byte(len(fileName)))
body = append(body, []byte(fileName)...)
body = append(body, timeStampBytes[:]...)
body = append(body, literal...)
binary.BigEndian.PutUint16(header[1:], uint16(len(body)))
if err != nil {
return
}
buf := new(bytes.Buffer)
buf.Write(header[:])
buf.Write(body)
pkt = buf.Bytes()
return
}