-
Notifications
You must be signed in to change notification settings - Fork 25
/
get.go
45 lines (36 loc) · 817 Bytes
/
get.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
package elgamal
import (
"github.com/deatil/go-cryptobin/elgamal"
)
// 获取 PrivateKey
func (this EIGamal) GetPrivateKey() *elgamal.PrivateKey {
return this.privateKey
}
// 获取 PublicKey
func (this EIGamal) GetPublicKey() *elgamal.PublicKey {
return this.publicKey
}
// 获取 hash 类型
func (this EIGamal) GetSignHash() HashFunc {
return this.signHash
}
// 获取 keyData
func (this EIGamal) GetKeyData() []byte {
return this.keyData
}
// 获取 data
func (this EIGamal) GetData() []byte {
return this.data
}
// 获取 parsedData
func (this EIGamal) GetParsedData() []byte {
return this.parsedData
}
// 获取验证后情况
func (this EIGamal) GetVerify() bool {
return this.verify
}
// 获取错误
func (this EIGamal) GetErrors() []error {
return this.Errors
}