-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaes.go
73 lines (58 loc) · 1.23 KB
/
aes.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
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"io"
)
func encrypt(text string, key []byte) (string, error) {
if text == "" {
return "", nil
}
plaintext := []byte(text)
block, err := aes.NewCipher(key)
if err != nil {
return "", err
}
nonce := make([]byte, 12)
if _, err := io.ReadFull(rand.Reader, nonce); err != nil {
return "", err
}
gcm, err := cipher.NewGCM(block)
if err != nil {
return "", err
}
ciphertext := gcm.Seal(nil, nonce, plaintext, nil)
return base64.StdEncoding.EncodeToString(append(nonce, ciphertext...)), nil
}
func decrypt(text string, key []byte) (string, error) {
if text == "" {
return "", nil
}
ciphertext, err := base64.StdEncoding.DecodeString(text)
if err != nil {
return "", err
}
block, err := aes.NewCipher(key)
if err != nil {
return "", err
}
nonce := ciphertext[:12]
gcm, err := cipher.NewGCM(block)
if err != nil {
return "", err
}
plaintext, err := gcm.Open(nil, nonce, ciphertext[12:], nil)
if err != nil {
return "", err
}
return string(plaintext), nil
}
func randomkey() ([]byte, error) {
key := make([]byte, 16)
if _, err := io.ReadFull(rand.Reader, key); err != nil {
return nil, err
}
return key, nil
}