-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.go
59 lines (50 loc) · 1.18 KB
/
functions.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
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/hex"
"io"
)
func encrypt(plaintext string, key string) (string, error) {
key32Byte := make([]byte, 32)
copy(key32Byte[:], []byte(key))
c, err := aes.NewCipher(key32Byte)
if err != nil {
return "", err
}
gcm, err := cipher.NewGCM(c)
if err != nil {
return "", err
}
nonce := make([]byte, gcm.NonceSize())
if _, err = io.ReadFull(rand.Reader, nonce); err != nil {
return "", err
}
return hex.EncodeToString(gcm.Seal(nonce, nonce, []byte(plaintext), nil)), nil
}
/*
func decrypt(ciphertextString string, keyString string) (string, error) {
ciphertext, err := hex.DecodeString(ciphertextString)
if err != nil {
return "", err
}
key := make([]byte, 32)
copy(key[:], []byte(keyString))
c, err := aes.NewCipher(key)
if err != nil {
return "", err
}
gcm, err := cipher.NewGCM(c)
if err != nil {
return "", err
}
nonceSize := gcm.NonceSize()
if len(ciphertext) < nonceSize {
return "", errors.New("ciphertext too short")
}
nonce, ciphertext := ciphertext[:nonceSize], ciphertext[nonceSize:]
decodedText, err := gcm.Open(nil, nonce, ciphertext, nil)
return string(decodedText), nil
}
*/