-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathencryption.go
81 lines (66 loc) · 2.07 KB
/
encryption.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
package dry
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"io"
"sync"
)
var (
AES = aesCipherPool{NewSyncPoolMap()}
)
// The pool uses sync.Pool internally.
type aesCipherPool struct {
poolMap *SyncPoolMap
}
func (pool *aesCipherPool) forKey(key []byte) *sync.Pool {
return pool.poolMap.GetOrAddNew(string(key), func() interface{} {
block, err := aes.NewCipher(key)
if err != nil {
panic(err)
}
return block
})
}
func (pool *aesCipherPool) GetCypher(key []byte) cipher.Block {
return pool.forKey(key).Get().(cipher.Block)
}
func (pool *aesCipherPool) ReturnCypher(key []byte, block cipher.Block) {
pool.forKey(key).Put(block)
}
// EncryptAES encrypts plaintext using AES with the given key.
// key should be either 16, 24, or 32 bytes to select
// AES-128, AES-192, or AES-256.
// plaintext must not be shorter than key.
func EncryptAES(key []byte, plaintext []byte) []byte {
block := AES.GetCypher(key)
defer AES.ReturnCypher(key, block)
// The IV needs to be unique, but not secure. Therefore it's common to
// include it at the beginning of the ciphertext.
ciphertext := make([]byte, aes.BlockSize+len(plaintext))
iv := ciphertext[:aes.BlockSize]
if _, err := io.ReadFull(rand.Reader, iv); err != nil {
panic(err)
}
stream := cipher.NewCFBEncrypter(block, iv)
stream.XORKeyStream(ciphertext[aes.BlockSize:], plaintext)
return ciphertext
}
// DecryptAES decrypts ciphertext using AES with the given key.
// key should be either 16, 24, or 32 bytes to select
// AES-128, AES-192, or AES-256.
func DecryptAES(key []byte, ciphertext []byte) []byte {
block := AES.GetCypher(key)
defer AES.ReturnCypher(key, block)
// The IV needs to be unique, but not secure. Therefore it's common to
// include it at the beginning of the ciphertext.
if len(ciphertext) < aes.BlockSize {
panic("ciphertext too short")
}
iv := ciphertext[:aes.BlockSize]
ciphertext = ciphertext[aes.BlockSize:]
stream := cipher.NewCFBDecrypter(block, iv)
// XORKeyStream can work in-place if the two arguments are the same.
stream.XORKeyStream(ciphertext, ciphertext)
return ciphertext
}