-
Notifications
You must be signed in to change notification settings - Fork 4
/
xor.go
93 lines (74 loc) · 1.81 KB
/
xor.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
package xcrypto
import (
"crypto/rc4"
"encoding/hex"
"github.com/fufuok/utils"
"github.com/fufuok/utils/base58"
)
// XOREnStringHex 加密
func XOREnStringHex(s string, key []byte) string {
return XOREnHex(utils.S2B(s), key)
}
// XOREnHex 加密
func XOREnHex(b, key []byte) string {
return hex.EncodeToString(XOR(b, key))
}
// XORDeStringHex 解密
func XORDeStringHex(s string, key []byte) string {
return utils.B2S(XORDeHex(s, key))
}
// XORDeHex 解密
func XORDeHex(s string, key []byte) []byte {
if data, err := hex.DecodeString(s); err == nil {
return XOR(data, key)
}
return nil
}
// XOREnStringB58 加密
func XOREnStringB58(s string, key []byte) string {
return XOREnB58(utils.S2B(s), key)
}
// XOREnB58 加密
func XOREnB58(b, key []byte) string {
return base58.Encode(XOR(b, key))
}
// XORDeStringB58 解密
func XORDeStringB58(s string, key []byte) string {
return utils.B2S(XORDeB58(s, key))
}
// XORDeB58 解密
func XORDeB58(s string, key []byte) []byte {
return XOR(base58.Decode(s), key)
}
// XOREnStringB64 加密
func XOREnStringB64(s string, key []byte) string {
return XOREnB64(utils.S2B(s), key)
}
// XOREnB64 加密
func XOREnB64(b, key []byte) string {
return utils.B64UrlEncode(XOR(b, key))
}
// XORDeStringB64 解密
func XORDeStringB64(s string, key []byte) string {
return utils.B2S(XORDeB64(s, key))
}
// XORDeB64 解密
func XORDeB64(s string, key []byte) []byte {
return XOR(utils.B64UrlDecode(s), key)
}
// XOR 异或加解密
func XOR(src, key []byte) []byte {
dst, _ := XORE(src, key)
return dst
}
// XORE RC4 加密算法(异或运算), 简单加解密, 不够安全
// key 长度是 1-256
func XORE(src, key []byte) ([]byte, error) {
c, err := rc4.NewCipher(key)
if err != nil {
return src, err
}
dst := make([]byte, len(src))
c.XORKeyStream(dst, src)
return dst, nil
}