-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaes.go
90 lines (82 loc) · 2.46 KB
/
aes.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
package wechat
import (
"crypto/aes"
"crypto/cipher"
"encoding/base64"
"encoding/json"
"errors"
)
//微信小程序用户信息解密
var (
ErrPaddingSize = errors.New("padding size error")
ErrAppIDNotMatch = errors.New("appId not match")
)
type UserInfo struct {
OpenGId string `json:"openGId,omitempty"`
OpenID string `json:"openId"`
UnionID string `json:"unionId"`
NickName string `json:"nickName"`
Gender int `json:"gender"`
City string `json:"city"`
Province string `json:"province"`
Country string `json:"country"`
AvatarURL string `json:"avatarUrl"`
Language string `json:"language"`
Watermark struct {
Timestamp int64 `json:"timestamp"`
AppID string `json:"appid"`
} `json:"watermark"`
}
type WXConfig struct {
appID, sessionKey string
}
func NewWXConfig(appID, sessionKey string) *WXConfig {
return &WXConfig{
appID: appID,
sessionKey: sessionKey,
}
}
// 接口返回的加密数据( encryptedData )进行对称解密。 解密算法如下:
// 对称解密使用的算法为 AES-128-CBC,数据采用PKCS#7填充。
// 对称解密的目标密文为 Base64_Decode(encryptedData)。
// 对称解密秘钥 aeskey = Base64_Decode(session_key), aeskey 是16字节。
// 对称解密算法初始向量 为Base64_Decode(iv),其中iv由数据接口返回。
// AES并没有64位的块, 如果采用PKCS5, 那么实质上就是采用PKCS7
func (w *WXConfig) Decrypt(encryptedData, iv string) (*UserInfo, error) {
aesKey, err := base64.StdEncoding.DecodeString(w.sessionKey)
if err != nil {
return nil, err
}
cipherText, err := base64.StdEncoding.DecodeString(encryptedData)
if err != nil {
return nil, err
}
ivBytes, err := base64.StdEncoding.DecodeString(iv)
if err != nil {
return nil, err
}
block, err := aes.NewCipher(aesKey)
if err != nil {
return nil, err
}
plaintext := make([]byte, len(cipherText))
cipher.NewCBCDecrypter(block, ivBytes).CryptBlocks(plaintext, cipherText)
plaintext, err = PKCS5UnPadding(plaintext, block.BlockSize())
var userInfo UserInfo
err = json.Unmarshal(plaintext, &userInfo)
if err != nil {
return nil, err
}
if userInfo.Watermark.AppID != w.appID {
return nil, ErrAppIDNotMatch
}
return &userInfo, nil
}
func PKCS5UnPadding(plaintext []byte, blockSize int) ([]byte, error) {
length := len(plaintext)
unpadding := int(plaintext[length-1])
if unpadding >= length || unpadding > blockSize {
return nil, ErrPaddingSize
}
return plaintext[:(length - unpadding)], nil
}