-
Notifications
You must be signed in to change notification settings - Fork 0
/
encryption.go
executable file
·130 lines (113 loc) · 2.94 KB
/
encryption.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
package golibs
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"crypto/des"
"crypto/hmac"
"crypto/md5"
"crypto/sha1"
"crypto/sha256"
"crypto/sha512"
"encoding/base64"
"encoding/hex"
"errors"
"net/url"
)
func Md5(s string) string {
h := md5.New()
h.Write(StringToSliceByte(s))
return hex.EncodeToString(h.Sum(nil))
}
func UrlEncode(source string) string {
return url.QueryEscape(source)
}
func UrlDecode(source string) (string, error) {
return url.QueryUnescape(source)
}
func Base64(src []byte) string {
return base64.StdEncoding.EncodeToString(src)
}
func UnBase64(source string) ([]byte, error) {
return base64.StdEncoding.DecodeString(source)
}
func Sha1(message []byte) []byte {
h := sha1.New()
h.Write(message)
return h.Sum(nil)
}
func HmacMd5(message, secret []byte) []byte {
h := hmac.New(md5.New, secret)
h.Write(message)
return h.Sum(nil)
}
func HmacSha1(message, secret []byte) []byte {
h := hmac.New(sha1.New, secret)
h.Write(message)
return h.Sum(nil)
}
func HmacSha256(message, secret []byte) []byte {
h := hmac.New(sha256.New, secret)
h.Write(message)
return h.Sum(nil)
}
func HmacSha512(message, secret []byte) []byte {
h := hmac.New(sha512.New, secret)
h.Write(message)
return h.Sum(nil)
}
func AesEncrypt(plaintext, key, iv []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, errors.New("invalid decrypt key")
}
blockSize := block.BlockSize()
plaintext = PKCS7Padding(plaintext, blockSize)
blockMode := cipher.NewCBCEncrypter(block, iv)
ciphertext := make([]byte, len(plaintext))
blockMode.CryptBlocks(ciphertext, plaintext)
return ciphertext, nil
}
func AesDecrypt(crypted, key, iv []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
blockMode := cipher.NewCBCDecrypter(block, iv)
origData := make([]byte, len(crypted))
blockMode.CryptBlocks(origData, crypted)
origData = PKCS7Unpadding(origData)
return origData, nil
}
func DesEncrypt(origData, key, iv []byte) ([]byte, error) {
block, err := des.NewCipher(key)
if err != nil {
return nil, err
}
origData = PKCS7Padding(origData, block.BlockSize())
blockMode := cipher.NewCBCEncrypter(block, iv)
crypted := make([]byte, len(origData))
blockMode.CryptBlocks(crypted, origData)
return crypted, nil
}
func DesDecrypt(crypted, key, iv []byte) ([]byte, error) {
block, err := des.NewCipher(key)
if err != nil {
return nil, err
}
blockMode := cipher.NewCBCDecrypter(block, iv)
origData := make([]byte, len(crypted))
blockMode.CryptBlocks(origData, crypted)
origData = PKCS7Unpadding(origData)
return origData, nil
}
func PKCS7Padding(ciphertext []byte, blockSize int) []byte {
padding := blockSize - len(ciphertext)%blockSize
padtext := bytes.Repeat([]byte{byte(padding)}, padding)
return append(ciphertext, padtext...)
}
func PKCS7Unpadding(origData []byte) []byte {
length := len(origData)
unpadding := int(origData[length-1])
return origData[:(length - unpadding)]
}