You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.6 KiB
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package util
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"encoding/base64"
"fmt"
)
type AesEncrypter struct {
key []byte
iv []byte
block cipher.Block
}
var AesEcpt AesEncrypter
func init() {
AesEcpt.key = []byte("bGcGfWb3Kg2s4gcG")
AesEcpt.iv = []byte("aebksHkG4jAEk2Ag")
var err error
AesEcpt.block, err = aes.NewCipher(AesEcpt.key)
if err != nil {
panic(err)
}
}
// 加密
func (a *AesEncrypter) AesBase64Encrypt(in string) (string, error) {
origData := []byte(in)
origData = PKCS5Padding(origData, a.block.BlockSize())
crypted := make([]byte, len(origData))
// 根据CryptBlocks方法的说明如下方式初始化crypted也可以
bm := cipher.NewCBCEncrypter(a.block, a.iv)
bm.CryptBlocks(crypted, origData)
var b = base64.StdEncoding.EncodeToString(crypted)
return b, nil
}
// 解密
func (a *AesEncrypter) AesBase64Decrypt(b string) (string, error) {
crypted, err := base64.StdEncoding.DecodeString(b)
if err != nil {
fmt.Printf("err: %v\n", err)
}
origData := make([]byte, len(crypted))
bm := cipher.NewCBCDecrypter(a.block, a.iv)
bm.CryptBlocks(origData, crypted)
origData = PKCS5UnPadding(origData)
var out = string(origData)
return out, 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(origData []byte) []byte {
length := len(origData)
// 去掉最后一个字节 unpadding 次
unpadding := int(origData[length-1])
return origData[:(length - unpadding)]
}