-
Notifications
You must be signed in to change notification settings - Fork 25
/
from.go
187 lines (135 loc) · 4.21 KB
/
from.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package curve25519
import (
"io"
"crypto/rand"
"github.com/deatil/go-cryptobin/tool"
"github.com/deatil/go-cryptobin/dh/curve25519"
)
// 生成密钥
func (this Curve25519) GenerateKey() Curve25519 {
privateKey, publicKey, err := curve25519.GenerateKey(rand.Reader)
this.privateKey = privateKey
this.publicKey = publicKey
return this.AppendError(err)
}
// 生成密钥
func GenerateKey() Curve25519 {
return defaultCurve25519.GenerateKey()
}
// 生成密钥
func (this Curve25519) GenerateKeyWithSeed(reader io.Reader) Curve25519 {
privateKey, publicKey, err := curve25519.GenerateKey(reader)
this.privateKey = privateKey
this.publicKey = publicKey
return this.AppendError(err)
}
// 生成密钥
func GenerateKeyWithSeed(reader io.Reader) Curve25519 {
return defaultCurve25519.GenerateKeyWithSeed(reader)
}
// ==========
// 私钥
func (this Curve25519) FromPrivateKey(key []byte) Curve25519 {
parsedKey, err := this.ParsePrivateKeyFromPEM(key)
if err != nil {
return this.AppendError(err)
}
this.privateKey = parsedKey.(*curve25519.PrivateKey)
return this
}
// 私钥
func FromPrivateKey(key []byte) Curve25519 {
return defaultCurve25519.FromPrivateKey(key)
}
// 私钥带密码
func (this Curve25519) FromPrivateKeyWithPassword(key []byte, password string) Curve25519 {
parsedKey, err := this.ParsePrivateKeyFromPEMWithPassword(key, password)
if err != nil {
return this.AppendError(err)
}
this.privateKey = parsedKey.(*curve25519.PrivateKey)
return this
}
// 私钥
func FromPrivateKeyWithPassword(key []byte, password string) Curve25519 {
return defaultCurve25519.FromPrivateKeyWithPassword(key, password)
}
// 公钥
func (this Curve25519) FromPublicKey(key []byte) Curve25519 {
parsedKey, err := this.ParsePublicKeyFromPEM(key)
if err != nil {
return this.AppendError(err)
}
this.publicKey = parsedKey.(*curve25519.PublicKey)
return this
}
// 公钥
func FromPublicKey(key []byte) Curve25519 {
return defaultCurve25519.FromPublicKey(key)
}
// ==========
// 根据私钥 x, y 生成
func (this Curve25519) FromKeyXYHexString(xString string, yString string) Curve25519 {
encoding := tool.NewEncoding()
x, _ := encoding.HexDecode(xString)
y, _ := encoding.HexDecode(yString)
priv := &curve25519.PrivateKey{}
priv.X = x
priv.PublicKey.Y = y
this.privateKey = priv
this.publicKey = &priv.PublicKey
return this
}
// 根据私钥 x, y 生成
func FromKeyXYHexString(xString string, yString string) Curve25519 {
return defaultCurve25519.FromKeyXYHexString(xString, yString)
}
// 根据私钥 x 生成
func (this Curve25519) FromPrivateKeyXHexString(xString string) Curve25519 {
encoding := tool.NewEncoding()
x, _ := encoding.HexDecode(xString)
priv := &curve25519.PrivateKey{}
priv.X = x
public, _ := curve25519.GeneratePublicKey(priv)
priv.PublicKey = *public
this.privateKey = priv
return this
}
// 根据私钥 x 生成
func FromPrivateKeyXHexString(xString string) Curve25519 {
return defaultCurve25519.FromPrivateKeyXHexString(xString)
}
// 根据公钥 y 生成
func (this Curve25519) FromPublicKeyYHexString(yString string) Curve25519 {
encoding := tool.NewEncoding()
y, _ := encoding.HexDecode(yString)
public := &curve25519.PublicKey{}
public.Y = y
this.publicKey = public
return this
}
// 根据公钥 y 生成
func FromPublicKeyYHexString(yString string) Curve25519 {
return defaultCurve25519.FromPublicKeyYHexString(yString)
}
// ==========
// DER 私钥
func (this Curve25519) FromPrivateKeyDer(der []byte) Curve25519 {
key := tool.EncodeDerToPem(der, "PRIVATE KEY")
parsedKey, err := this.ParsePrivateKeyFromPEM(key)
if err != nil {
return this.AppendError(err)
}
this.privateKey = parsedKey.(*curve25519.PrivateKey)
return this
}
// DER 公钥
func (this Curve25519) FromPublicKeyDer(der []byte) Curve25519 {
key := tool.EncodeDerToPem(der, "PUBLIC KEY")
parsedKey, err := this.ParsePublicKeyFromPEM(key)
if err != nil {
return this.AppendError(err)
}
this.publicKey = parsedKey.(*curve25519.PublicKey)
return this
}