-
Notifications
You must be signed in to change notification settings - Fork 25
/
with.go
93 lines (70 loc) · 1.64 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
}
// 设置 paredData
func (this Ecdsa) WithParedData(data []byte) Ecdsa {
this.paredData = 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
}