-
Notifications
You must be signed in to change notification settings - Fork 69
/
des.go
71 lines (63 loc) · 1.45 KB
/
des.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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
}