66 lines
2.2 KiB
Go
66 lines
2.2 KiB
Go
package common
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/aes"
|
|
"crypto/cipher"
|
|
"crypto/md5"
|
|
"encoding/base64"
|
|
"encoding/hex"
|
|
)
|
|
|
|
func AesEncryptCBC(origData []byte, key []byte) string {
|
|
// 分组秘钥
|
|
// NewCipher该函数限制了输入k的长度必须为16, 24或者32
|
|
key = Md5(key)[:24]
|
|
block, _ := aes.NewCipher(key)
|
|
blockSize := block.BlockSize() // 获取秘钥块的长度
|
|
origData = pkcs7Padding(origData, blockSize) // 补全码
|
|
//fmt.Println(blockSize)
|
|
blockMode := cipher.NewCBCEncrypter(block, key[:blockSize]) // 加密模式
|
|
//fmt.Println(string(Md5(key)[:blockSize]))
|
|
encrypted := make([]byte, len(origData)) // 创建数组
|
|
blockMode.CryptBlocks(encrypted, origData) // 加密
|
|
return base64.StdEncoding.EncodeToString(encrypted)
|
|
}
|
|
func AesDecryptCBC(enc string, key []byte) string {
|
|
key = Md5(key)[:24]
|
|
encrypted,_ := base64.StdEncoding.DecodeString(enc)
|
|
block, _ := aes.NewCipher(key) // 分组秘钥
|
|
blockSize := block.BlockSize() // 获取秘钥块的长度
|
|
blockMode := cipher.NewCBCDecrypter(block, key[:blockSize]) // 加密模式
|
|
decrypted := make([]byte, len(encrypted)) // 创建数组
|
|
blockMode.CryptBlocks(decrypted, encrypted) // 解密
|
|
decrypted = pkcs7UnPadding(decrypted) // 去除补全码
|
|
return string(decrypted)
|
|
}
|
|
func pkcs5Padding(ciphertext []byte, blockSize int) []byte {
|
|
padding := blockSize - len(ciphertext)%blockSize
|
|
padtext := bytes.Repeat([]byte{byte(padding)}, padding)
|
|
return append(ciphertext, padtext...)
|
|
}
|
|
func pkcs5UnPadding(origData []byte) []byte {
|
|
length := len(origData)
|
|
unpadding := int(origData[length-1])
|
|
return origData[:(length - unpadding)]
|
|
}
|
|
|
|
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)]
|
|
}
|
|
|
|
func Md5(str []byte) []byte {
|
|
h := md5.New()
|
|
h.Write(str)
|
|
//fmt.Println(hex.EncodeToString(h.Sum(nil)))
|
|
return []byte(hex.EncodeToString(h.Sum(nil)))
|
|
}
|