-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate.go
76 lines (63 loc) · 1.51 KB
/
state.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
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"encoding/json"
"errors"
"io"
"log"
)
func EncodeState(v interface{}) (string, error) {
stateJson, err := json.Marshal(v)
if err != nil {
return "", err
}
//log.Printf("first json: '%s'\n", string(stateJson))
cipher, err := encrypt(cfg.AESKey, stateJson)
if err != nil {
log.Printf("Error producing cipher")
return "", err
}
res := base64.URLEncoding.EncodeToString(cipher)
return res, nil
}
func DecodeState(state string, target interface{}) error {
cipher, _ := base64.URLEncoding.DecodeString(state)
text, err := decrypt(cfg.AESKey, cipher)
if err != nil {
log.Printf("Error decrypting cipher")
return err
}
json.Unmarshal(text, target)
return nil
}
func encrypt(key, text []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
ciphertext := make([]byte, aes.BlockSize+len(text))
iv := ciphertext[:aes.BlockSize]
if _, err := io.ReadFull(rand.Reader, iv); err != nil {
return nil, err
}
cfb := cipher.NewCFBEncrypter(block, iv)
cfb.XORKeyStream(ciphertext[aes.BlockSize:], []byte(text))
return ciphertext, nil
}
func decrypt(key, text []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
if len(text) < aes.BlockSize {
return nil, errors.New("ciphertext too short")
}
iv := text[:aes.BlockSize]
text = text[aes.BlockSize:]
cfb := cipher.NewCFBDecrypter(block, iv)
cfb.XORKeyStream(text, text)
return text, nil
}