mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-22 21:05:48 +08:00
86 lines
1.8 KiB
Go
86 lines
1.8 KiB
Go
package crypto
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/aes"
|
|
"crypto/cipher"
|
|
"crypto/rand"
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
type AESCryptor interface {
|
|
CBCEncrypt(data []byte) ([]byte, error)
|
|
CBCDecrypt(cipher []byte) ([]byte, error)
|
|
}
|
|
|
|
type aesCryptor struct {
|
|
key []byte
|
|
}
|
|
|
|
func (c *aesCryptor) CBCEncrypt(data []byte) ([]byte, error) {
|
|
block, err := aes.NewCipher(c.key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
paddedData := c.pkcs7Padding(data, aes.BlockSize)
|
|
ciphertext := make([]byte, aes.BlockSize+len(paddedData))
|
|
iv := ciphertext[:aes.BlockSize]
|
|
if _, err := io.ReadFull(rand.Reader, iv); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
mode := cipher.NewCBCEncrypter(block, iv)
|
|
mode.CryptBlocks(ciphertext[aes.BlockSize:], paddedData)
|
|
|
|
return ciphertext, nil
|
|
}
|
|
|
|
func (c *aesCryptor) CBCDecrypt(ciphertext []byte) ([]byte, error) {
|
|
block, err := aes.NewCipher(c.key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(ciphertext) < aes.BlockSize {
|
|
return nil, fmt.Errorf("ciphertext too short")
|
|
}
|
|
|
|
iv := ciphertext[:aes.BlockSize]
|
|
ciphertext = ciphertext[aes.BlockSize:]
|
|
|
|
if len(ciphertext)%aes.BlockSize != 0 {
|
|
return nil, fmt.Errorf("ciphertext is not a multiple of the block size")
|
|
}
|
|
|
|
mode := cipher.NewCBCDecrypter(block, iv)
|
|
mode.CryptBlocks(ciphertext, ciphertext)
|
|
|
|
return c.pkcs7Unpadding(ciphertext), nil
|
|
}
|
|
|
|
func (c *aesCryptor) pkcs7Padding(data []byte, blockSize int) []byte {
|
|
padding := blockSize - (len(data) % blockSize)
|
|
padText := bytes.Repeat([]byte{byte(padding)}, padding)
|
|
return append(data, padText...)
|
|
}
|
|
|
|
func (c *aesCryptor) pkcs7Unpadding(data []byte) []byte {
|
|
length := len(data)
|
|
if length == 0 {
|
|
return data
|
|
}
|
|
|
|
padding := int(data[length-1])
|
|
if padding > length {
|
|
return data
|
|
}
|
|
|
|
return data[:length-padding]
|
|
}
|
|
|
|
func NewAESCryptor(key []byte) AESCryptor {
|
|
return &aesCryptor{key: key}
|
|
}
|