代码拉取完成,页面将自动刷新
package dongle
import (
"crypto/aes"
"fmt"
)
type AesError struct {
}
func NewAesError() AesError {
return AesError{}
}
func (e AesError) SrcError() error {
return fmt.Errorf("aes: invalid src, the src is not full blocks")
}
func (e AesError) KeyError() error {
return fmt.Errorf("aes: invalid key, the key must be 16, 24 or 32 bytes")
}
func (e AesError) IvError() error {
return fmt.Errorf("aes: invalid iv, the iv size must be 16 bytes")
}
// ByAes encrypts by aes.
func (e Encrypter) ByAes(c *Cipher) Encrypter {
if len(e.src) == 0 || e.Error != nil {
return e
}
block, err := aes.NewCipher(c.key)
aesError := AesError{}
if err != nil {
e.Error = aesError.KeyError()
return e
}
if c.mode != ECB && len(c.iv) != block.BlockSize() {
e.Error = aesError.IvError()
return e
}
if c.padding == No && len(e.src)%block.BlockSize() != 0 {
e.Error = aesError.SrcError()
return e
}
e.dst, e.Error = c.Encrypt(e.src, block)
return e
}
// ByAes decrypts by aes.
func (d Decrypter) ByAes(c *Cipher) Decrypter {
if len(d.src) == 0 || d.Error != nil {
return d
}
block, err := aes.NewCipher(c.key)
aesError := AesError{}
if err != nil {
d.Error = aesError.KeyError()
return d
}
if c.mode != ECB && len(c.iv) != block.BlockSize() {
d.Error = aesError.IvError()
return d
}
if (c.mode == CBC || c.padding == No) && len(d.src)%block.BlockSize() != 0 {
d.Error = aesError.SrcError()
return d
}
d.dst, d.Error = c.Decrypt(d.src, block)
return d
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。