forked from uadmin/uadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
encrypt.go
148 lines (130 loc) · 3.69 KB
/
encrypt.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
package uadmin
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"errors"
"io"
"math/big"
"reflect"
)
// generateByteArray generates a base64 string of length length
func generateByteArray(length int) []byte {
base := new(big.Int)
base.SetString("256", 10)
tempKey := []byte{}
var tempByte *big.Int
for i := 0; i < length; i++ {
tempByte, _ = rand.Int(rand.Reader, base)
tempKey = append(tempKey, byte(tempByte.Uint64()))
}
return tempKey
}
func encrypt(key []byte, message string) (encmess string, err error) {
plainText := []byte(message)
block, err := aes.NewCipher(key)
if err != nil {
return
}
//IV needs to be unique, but doesn't have to be secure.
//It's common to put 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 {
return
}
stream := cipher.NewCFBEncrypter(block, iv)
stream.XORKeyStream(cipherText[aes.BlockSize:], plainText)
//returns to base64 encoded string
encmess = base64.URLEncoding.EncodeToString(cipherText)
return
}
func decrypt(key []byte, securemess string) (decodedmess string, err error) {
cipherText, err := base64.URLEncoding.DecodeString(securemess)
if err != nil {
return
}
block, err := aes.NewCipher(key)
if err != nil {
return
}
if len(cipherText) < aes.BlockSize {
err = errors.New("ciphertext block size is too short")
return
}
//IV needs to be unique, but doesn't have to be secure.
//It's common to put it at the beginning of the ciphertext.
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)
decodedmess = string(cipherText)
return
}
func decryptArray(a interface{}) {
if !registered {
return
}
if schema, ok := getSchema(getModelName(a)); ok {
for _, f := range schema.Fields {
if f.Encrypt {
// TODO: Decrypt
allArray := reflect.ValueOf(a)
for i := 0; i < allArray.Elem().Len(); i++ {
encryptedValue := allArray.Elem().Index(i).FieldByName(f.Name).String()
decryptedValue, _ := decrypt(EncryptKey, encryptedValue)
allArray.Elem().Index(i).FieldByName(f.Name).Set(reflect.ValueOf(decryptedValue))
}
}
}
}
}
func encryptArray(a interface{}) {
if !registered {
return
}
if schema, ok := getSchema(getModelName(a)); ok {
for _, f := range schema.Fields {
if f.Encrypt {
allArray := reflect.ValueOf(a)
for i := 0; i < allArray.Elem().Len(); i++ {
encryptedValue := allArray.Elem().Index(i).FieldByName(f.Name).String()
decryptedValue, _ := encrypt(EncryptKey, encryptedValue)
allArray.Elem().Index(i).FieldByName(f.Name).Set(reflect.ValueOf(decryptedValue))
}
}
}
}
}
func decryptRecord(a interface{}) {
if !registered {
return
}
if schema, ok := getSchema(getModelName(a)); ok {
for _, f := range schema.Fields {
if f.Encrypt {
recordValue := reflect.ValueOf(a)
encryptedValue := recordValue.Elem().FieldByName(f.Name).String()
decryptedValue, _ := decrypt(EncryptKey, encryptedValue)
recordValue.Elem().FieldByName(f.Name).Set(reflect.ValueOf(decryptedValue))
}
}
}
}
func encryptRecord(a interface{}) {
if !registered {
return
}
if schema, ok := getSchema(getModelName(a)); ok {
for _, f := range schema.Fields {
if f.Encrypt {
recordValue := reflect.ValueOf(a)
encryptedValue := recordValue.Elem().FieldByName(f.Name).String()
decryptedValue, _ := encrypt(EncryptKey, encryptedValue)
recordValue.Elem().FieldByName(f.Name).Set(reflect.ValueOf(decryptedValue))
}
}
}
}