forked from TencentBlueKing/bk-bcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdes.go
111 lines (96 loc) · 3.24 KB
/
des.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
/*
* Tencent is pleased to support the open source community by making Blueking Container Service available.
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* Unless required by applicable law or agreed to in writing, software distributed under,
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language governing permissions and
* limitations under the License.
*/
package encryptv2
import (
"bytes"
"crypto/cipher"
"crypto/des" // nolint
"encoding/base64"
)
// PKCS5Padding size padding
func PKCS5Padding(ciphertext []byte, blockSize int) []byte {
padding := blockSize - len(ciphertext)%blockSize
padtext := bytes.Repeat([]byte{byte(padding)}, padding)
return append(ciphertext, padtext...)
}
// PKCS5UnPadding size unpadding
func PKCS5UnPadding(origData []byte) []byte {
length := len(origData)
unpadding := int(origData[length-1])
return origData[:(length - unpadding)]
}
// EncryptOrigin 加密方法
func EncryptOrigin(src []byte, priKey string) ([]byte, error) {
block, err := des.NewTripleDESCipher([]byte(priKey)) // nolint
if err != nil {
return nil, err
}
src = PKCS5Padding(src, block.BlockSize())
blockMode := cipher.NewCBCEncrypter(block, []byte(priKey)[:block.BlockSize()])
out := make([]byte, len(src))
blockMode.CryptBlocks(out, src)
return out, nil
}
// DecryptOrigin 解密方法
func DecryptOrigin(src []byte, priKey string) ([]byte, error) {
block, err := des.NewTripleDESCipher([]byte(priKey)) // nolint
if err != nil {
return nil, err
}
blockMode := cipher.NewCBCDecrypter(block, []byte(priKey)[:block.BlockSize()])
out := make([]byte, len(src))
blockMode.CryptBlocks(out, src)
out = PKCS5UnPadding(out)
return out, nil
}
// Encrypt 加密方法
func Encrypt(src []byte, priKey string) ([]byte, error) {
out, err := EncryptOrigin(src, priKey)
if err != nil {
return nil, err
}
strOut := base64.StdEncoding.EncodeToString(out)
return []byte(strOut), nil
}
// Decrypt 解密方法
func Decrypt(src []byte, priKey string) ([]byte, error) {
ori, _ := base64.StdEncoding.DecodeString(string(src))
return DecryptOrigin(ori, priKey)
}
// DesEncryptToBaseV2 encrypt with priKey simply, out base64 string
func DesEncryptToBaseV2(src []byte, secretKey string) ([]byte, error) {
if len(secretKey) != 0 {
return EncryptOrigin(src, secretKey)
}
return src, nil
}
// DesDecryptFromBaseV2 base64 decoding, and decrypt with priKey.
func DesDecryptFromBaseV2(src []byte, secretKey string) ([]byte, error) {
if len(secretKey) != 0 {
return DecryptOrigin(src, secretKey)
}
return src, nil
}
// DesEncryptToBase encrypt with priKey simply, out base64 string
func DesEncryptToBase(src []byte, priKey string) ([]byte, error) {
if len(priKey) != 0 {
return Encrypt(src, priKey)
}
return src, nil
}
// DesDecryptFromBase base64 decoding, and decrypt with priKey
func DesDecryptFromBase(src []byte, priKey string) ([]byte, error) {
if len(priKey) != 0 {
return Decrypt(src, priKey)
}
return src, nil
}