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