-
Notifications
You must be signed in to change notification settings - Fork 2
/
lib.go
62 lines (51 loc) · 1.42 KB
/
lib.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
package tblschema
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"crypto/sha256"
"encoding/hex"
"fmt"
"io"
)
// hashKey 使用SHA-256散列函数将任意长度的密钥转换为256位密钥
func hashKey(key []byte) []byte {
hash := sha256.Sum256(key)
return hash[:]
}
// encryptString 使用AES-256对字符串进行加密
func EncryptString(plaintext string, key []byte) (string, error) {
block, err := aes.NewCipher(hashKey(key))
if err != nil {
return "", err
}
plaintextBytes := []byte(plaintext)
ciphertext := make([]byte, aes.BlockSize+len(plaintextBytes))
iv := ciphertext[:aes.BlockSize]
if _, err := io.ReadFull(rand.Reader, iv); err != nil {
return "", err
}
stream := cipher.NewCFBEncrypter(block, iv)
stream.XORKeyStream(ciphertext[aes.BlockSize:], plaintextBytes)
return hex.EncodeToString(ciphertext), nil
}
// decryptString 使用AES-256对加密字符串进行解密
func DecryptString(encrypted string, key []byte) (string, error) {
ciphertext, err := hex.DecodeString(encrypted)
if err != nil {
return "", err
}
block, err := aes.NewCipher(hashKey(key))
if err != nil {
return "", err
}
if len(ciphertext) < aes.BlockSize {
//密文太短
return "", fmt.Errorf("解密失败")
}
iv := ciphertext[:aes.BlockSize]
ciphertext = ciphertext[aes.BlockSize:]
stream := cipher.NewCFBDecrypter(block, iv)
stream.XORKeyStream(ciphertext, ciphertext)
return string(ciphertext), nil
}