-
Notifications
You must be signed in to change notification settings - Fork 25
/
with.go
54 lines (39 loc) · 830 Bytes
/
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
package rsa
import (
"crypto/rsa"
)
// 设置 PrivateKey
func (this Rsa) WithPrivateKey(data *rsa.PrivateKey) Rsa {
this.privateKey = data
return this
}
// 设置 PublicKey
func (this Rsa) WithPublicKey(data *rsa.PublicKey) Rsa {
this.publicKey = data
return this
}
// 设置 data
func (this Rsa) WithData(data []byte) Rsa {
this.data = data
return this
}
// 设置 paredData
func (this Rsa) WithParedData(data []byte) Rsa {
this.paredData = data
return this
}
// 设置 verify
func (this Rsa) WithVerify(data bool) Rsa {
this.verify = data
return this
}
// 设置 hash 类型
func (this Rsa) WithSignHash(data string) Rsa {
this.signHash = data
return this
}
// 设置错误
func (this Rsa) WithError(errs []error) Rsa {
this.Errors = errs
return this
}