1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package utils
- import (
- "bytes"
- "crypto/aes"
- "crypto/cipher"
- "encoding/base64"
- "errors"
- )
- // pkcs7Padding 填充
- func pkcs7Padding(data []byte, blockSize int) []byte {
- //判断缺少几位长度。最少1,最多 blockSize
- padding := blockSize - len(data)%blockSize
- //补足位数。把切片[]byte{byte(padding)}复制padding个
- padText := bytes.Repeat([]byte{byte(padding)}, padding)
- return append(data, padText...)
- }
- // pkcs7UnPadding 填充的反向操作
- func pkcs7UnPadding(data []byte) ([]byte, error) {
- length := len(data)
- if length == 0 {
- return nil, errors.New("加密字符串错误!")
- }
- //获取填充的个数
- unPadding := int(data[length-1])
- return data[:(length - unPadding)], nil
- }
- // AesEncrypt 加密
- func AesEncrypt(cipherText string, sKey string) (string, error) {
- data := []byte(cipherText)
- key := []byte(sKey)
- //创建加密实例
- block, err := aes.NewCipher(key)
- if err != nil {
- return "", err
- }
- //判断加密块的大小
- blockSize := block.BlockSize()
- //填充
- encryptBytes := pkcs7Padding(data, blockSize)
- //初始化加密数据接收切片
- crypted := make([]byte, len(encryptBytes))
- //使用cbc加密模式
- blockMode := cipher.NewCBCEncrypter(block, key[:blockSize])
- //执行加密
- blockMode.CryptBlocks(crypted, encryptBytes)
- return base64.StdEncoding.EncodeToString(crypted), nil
- }
- // AesDecrypt 解密
- func AesDecrypt(encryptText string, sKey string) (string, error) {
- key := []byte(sKey)
- data, _ := base64.StdEncoding.DecodeString(encryptText)
- //创建实例
- block, err := aes.NewCipher(key)
- if err != nil {
- return "", err
- }
- //获取块的大小
- blockSize := block.BlockSize()
- //使用cbc
- blockMode := cipher.NewCBCDecrypter(block, key[:blockSize])
- //初始化解密数据接收切片
- crypted := make([]byte, len(data))
- //执行解密
- blockMode.CryptBlocks(crypted, data)
- //去除填充
- crypted, err = pkcs7UnPadding(crypted)
- if err != nil {
- return "", err
- }
- return string(crypted), nil
- }
|