-
Notifications
You must be signed in to change notification settings - Fork 0
/
crypto.go
87 lines (70 loc) · 1.68 KB
/
crypto.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
package do
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"fmt"
"io"
"strings"
)
// https://www.kancloud.cn/wizardforcel/golang-stdlib-ref/121494
// https://csrc.nist.gov/projects/block-cipher-techniques/bcm/current-modes
// https://www.cnblogs.com/happyhippy/archive/2006/12/23/601353.html
type Crypto struct {
key string
}
// NewCrypto NewCrypto
// key: 16, 24, or 32 bytes to select AES-128, AES-192, or AES-256.
func NewCrypto(key string) (*Crypto, error) {
var ik string
keyLen := len(key)
switch keyLen {
case 16, 24, 32:
ik = key
default:
return nil, fmt.Errorf("bad key length: %d", keyLen)
}
return &Crypto{
key: ik,
}, nil
}
func (e Crypto) Encrypt(money string) (r string, err error) {
key := []byte(e.key)
plaintext := []byte(money)
block, err := aes.NewCipher(key)
if err != nil {
return
}
// 生成随机字节
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)
r = string(ciphertext)
return
}
func (e Crypto) Decrypt(r string) (money string, err error) {
if strings.TrimSpace(r) == "" {
return
}
key := []byte(e.key)
ciphertext := []byte(r)
block, err := aes.NewCipher(key)
if err != nil {
return
}
// 取出随机字节
if len(ciphertext) < aes.BlockSize {
err = fmt.Errorf("ciphertext too short: %s", r)
return
}
iv := ciphertext[:aes.BlockSize]
ciphertext = ciphertext[aes.BlockSize:]
stream := cipher.NewCFBDecrypter(block, iv)
stream.XORKeyStream(ciphertext, ciphertext)
money = string(ciphertext)
return
}