-
Notifications
You must be signed in to change notification settings - Fork 0
/
key.go
223 lines (175 loc) · 3.94 KB
/
key.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
package smokering
import (
"bytes"
"crypto/cipher"
"encoding/base64"
"encoding/gob"
"encoding/json"
"sync"
)
const (
// StatusUnknown should only ever be set on an improperly intialized key.
StatusUnknown uint = iota
// StatusNew is for a new key that has never been decrypted or used.
StatusNew
// StatusUsed is set on a key that's been decryted at least once.
StatusUsed
// StatusDisabled is set on a key that's been disabled.
StatusDisabled
)
const (
maxKnownStatus = StatusDisabled
)
type (
// Key represents an encryption key.
Key struct {
sync.RWMutex
id string
note string
status uint
// Keys are stored in their encrypted state.
k []byte
}
keydata struct {
ID string `json:"id"`
Note string `json:"note"`
Status uint `json:"status"`
K string `json:"k"`
}
)
// ID returns the key ID.
func (k *Key) ID() string {
k.RLock()
defer k.RUnlock()
return k.id
}
// GetNote gets the note from the key.
func (k *Key) GetNote() string {
k.RLock()
defer k.RUnlock()
return k.note
}
// SetNote sets the note on the key.
func (k *Key) SetNote(note string) {
k.Lock()
defer k.Unlock()
k.note = note
}
// GetStatus gets the current key status.
func (k *Key) GetStatus() uint {
k.RLock()
defer k.RUnlock()
return k.status
}
// Decrypt and decode the key so that it may be used.
// block is the block cipher generated from the smokering master key.
func (k *Key) Decrypt(block cipher.Block, blocksize int) ([]byte, error) {
k.RLock()
defer k.RUnlock()
paddedtext, err := decrypt(block, k.k, blocksize)
if err != nil {
return nil, err
}
k.status = StatusUsed
return unpad(paddedtext, blocksize)
}
// Disable sets the status on a key to disabled, the keyring will not return it
// again after this.
func (k *Key) Disable() {
k.Lock()
defer k.Unlock()
k.status = StatusDisabled
}
func (k *Key) write(rawkey []byte, block cipher.Block, blocksize int) (err error) {
k.Lock()
defer k.Unlock()
rawkey = pad(rawkey, blocksize)
k.k, err = encrypt(block, rawkey, blocksize)
if err != nil {
return err
}
return nil
}
func (k *Key) getData() *keydata {
return &keydata{
ID: k.id,
Note: k.note,
Status: k.status,
K: base64.StdEncoding.EncodeToString(k.k),
}
}
// GobEncode implements the GobEncoder interface to allow saving a Key.
func (k *Key) GobEncode() ([]byte, error) {
k.RLock()
defer k.RUnlock()
d := k.getData()
buf := new(bytes.Buffer)
encoder := gob.NewEncoder(buf)
if err := encoder.Encode(d.ID); err != nil {
return nil, err
}
if err := encoder.Encode(d.Note); err != nil {
return nil, err
}
if err := encoder.Encode(d.Status); err != nil {
return nil, err
}
if err := encoder.Encode(d.K); err != nil {
return nil, err
}
return buf.Bytes(), nil
}
// GobDecode implements the GobDecoder interface to allow restoring a key state.
func (k *Key) GobDecode(byt []byte) error {
k.Lock()
defer k.Unlock()
d := keydata{}
buf := bytes.NewBuffer(byt)
decoder := gob.NewDecoder(buf)
if err := decoder.Decode(&d.ID); err != nil {
return err
}
if err := decoder.Decode(&d.Note); err != nil {
return err
}
if err := decoder.Decode(&d.Status); err != nil {
return err
}
if err := decoder.Decode(&d.K); err != nil {
return err
}
k.id = d.ID
k.note = d.Note
k.status = d.Status
_k, err := base64.StdEncoding.DecodeString(d.K)
if err != nil {
return err
}
k.k = _k
return nil
}
// AsJSON returns the key data serialized as JSON to allow saving a Key.
func (k *Key) AsJSON() ([]byte, error) {
k.RLock()
defer k.RUnlock()
d := k.getData()
return json.Marshal(d)
}
// FromJSON sets the key data from JSON to allow restoring a key state.
func (k *Key) FromJSON(byt []byte) error {
k.Lock()
defer k.Unlock()
d := keydata{}
if err := json.Unmarshal(byt, &d); err != nil {
return err
}
k.id = d.ID
k.note = d.Note
k.status = d.Status
_k, err := base64.StdEncoding.DecodeString(d.K)
if err != nil {
return err
}
k.k = _k
return nil
}