-
Notifications
You must be signed in to change notification settings - Fork 25
/
with.go
68 lines (50 loc) · 1.21 KB
/
with.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
package elgamal
import (
"github.com/deatil/go-cryptobin/tool"
"github.com/deatil/go-cryptobin/elgamal"
)
// 设置 PrivateKey
func (this EIGamal) WithPrivateKey(data *elgamal.PrivateKey) EIGamal {
this.privateKey = data
return this
}
// 设置 PublicKey
func (this EIGamal) WithPublicKey(data *elgamal.PublicKey) EIGamal {
this.publicKey = data
return this
}
// 设置 hash 类型
func (this EIGamal) WithSignHash(data HashFunc) EIGamal {
this.signHash = data
return this
}
// 设置 hash 类型
// 可用参数可查看 Hash 结构体数据
func (this EIGamal) SetSignHash(data string) EIGamal {
hash, err := tool.GetHash(data)
if err != nil {
return this.AppendError(err)
}
this.signHash = hash
return this
}
// 设置 data
func (this EIGamal) WithData(data []byte) EIGamal {
this.data = data
return this
}
// 设置 paredData
func (this EIGamal) WithParedData(data []byte) EIGamal {
this.paredData = data
return this
}
// 设置 verify
func (this EIGamal) WithVerify(data bool) EIGamal {
this.verify = data
return this
}
// 设置错误
func (this EIGamal) WithErrors(errs []error) EIGamal {
this.Errors = errs
return this
}