代码拉取完成,页面将自动刷新
package aes
import (
"bytes"
cryptoAes "crypto/aes"
"crypto/cipher"
"gitee.com/carlmax_my/console-core-go/pkg/crypto/base64"
)
var _ Aes = (*aes)(nil)
type Aes interface {
i()
// Encrypt
Encrypt(encryptStr string) (string, error)
// Decrypt
Decrypt(decryptStr string) (string, error)
}
type aes struct {
key string //
iv string //
url bool // base64 url safe format, replace (+/)->(-_), default is true
}
func New(key, iv string) Aes {
return &aes{
key: key,
iv: iv,
url: true,
}
}
func NewWithUrl(key, iv string, url bool) Aes {
return &aes{
key: key,
iv: iv,
url: url,
}
}
func (a *aes) i() {}
func (a *aes) Encrypt(encryptStr string) (string, error) {
encryptBytes := []byte(encryptStr)
block, err := cryptoAes.NewCipher([]byte(a.key))
if err != nil {
return "", err
}
blockSize := block.BlockSize()
encryptBytes = pkcs5Padding(encryptBytes, blockSize)
blockMode := cipher.NewCBCEncrypter(block, []byte(a.iv))
encrypted := make([]byte, len(encryptBytes))
blockMode.CryptBlocks(encrypted, encryptBytes)
return base64.New(a.url).Encode(encrypted), nil
}
func (a *aes) Decrypt(decryptStr string) (string, error) {
decryptBytes, err := base64.New(a.url).Decode(decryptStr)
if err != nil {
return "", err
}
block, err := cryptoAes.NewCipher([]byte(a.key))
if err != nil {
return "", err
}
blockMode := cipher.NewCBCDecrypter(block, []byte(a.iv))
decrypted := make([]byte, len(decryptBytes))
blockMode.CryptBlocks(decrypted, decryptBytes)
decrypted = pkcs5UnPadding(decrypted)
return string(decrypted), nil
}
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(decrypted []byte) []byte {
length := len(decrypted)
unPadding := int(decrypted[length-1])
return decrypted[:(length - unPadding)]
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。