-
Notifications
You must be signed in to change notification settings - Fork 24
/
rsa_to.go
53 lines (41 loc) · 913 Bytes
/
rsa_to.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
package rsa
import (
cryptobin_tool "github.com/deatil/go-cryptobin/tool"
)
// 私钥/公钥
func (this Rsa) ToKeyBytes() []byte {
return this.keyData
}
// 私钥/公钥
func (this Rsa) ToKeyString() string {
return string(this.keyData)
}
// ==========
// 输出字节
func (this Rsa) ToBytes() []byte {
return this.paredData
}
// 输出字符
func (this Rsa) ToString() string {
return string(this.paredData)
}
// 输出Base64
func (this Rsa) ToBase64String() string {
return cryptobin_tool.NewEncoding().Base64Encode(this.paredData)
}
// 输出Hex
func (this Rsa) ToHexString() string {
return cryptobin_tool.NewEncoding().HexEncode(this.paredData)
}
// ==========
// 验证结果
func (this Rsa) ToVerify() bool {
return this.verify
}
// 验证结果,返回 int 类型
func (this Rsa) ToVerifyInt() int {
if this.verify {
return 1
}
return 0
}