-
Notifications
You must be signed in to change notification settings - Fork 25
/
with.go
93 lines (70 loc) · 1.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package ecdsa
import (
"crypto/ecdsa"
"crypto/elliptic"
"github.com/deatil/go-cryptobin/tool"
)
// 设置 PrivateKey
func (this ECDSA) WithPrivateKey(data *ecdsa.PrivateKey) ECDSA {
this.privateKey = data
return this
}
// 设置 PublicKey
func (this ECDSA) WithPublicKey(data *ecdsa.PublicKey) ECDSA {
this.publicKey = data
return this
}
// 设置曲线类型
func (this ECDSA) WithCurve(curve elliptic.Curve) ECDSA {
this.curve = curve
return this
}
// 设置曲线类型
// 可选参数 [P521 | P384 | P256 | P224]
func (this ECDSA) SetCurve(curve string) ECDSA {
switch curve {
case "P521":
this.curve = elliptic.P521()
case "P384":
this.curve = elliptic.P384()
case "P256":
this.curve = elliptic.P256()
case "P224":
this.curve = elliptic.P224()
}
return this
}
// 设置 hash 类型
func (this ECDSA) WithSignHash(hash HashFunc) ECDSA {
this.signHash = hash
return this
}
// 设置 hash 类型
func (this ECDSA) SetSignHash(hash string) ECDSA {
h, err := tool.GetHash(hash)
if err != nil {
return this.AppendError(err)
}
this.signHash = h
return this
}
// 设置 data
func (this ECDSA) WithData(data []byte) ECDSA {
this.data = data
return this
}
// 设置 parsedData
func (this ECDSA) WithParsedData(data []byte) ECDSA {
this.parsedData = data
return this
}
// 设置验证结果
func (this ECDSA) WithVerify(data bool) ECDSA {
this.verify = data
return this
}
// 设置错误
func (this ECDSA) WithErrors(errs []error) ECDSA {
this.Errors = errs
return this
}