-
Notifications
You must be signed in to change notification settings - Fork 25
/
ecdh_from.go
105 lines (75 loc) · 2.25 KB
/
ecdh_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
package ecdh
import (
"crypto/rand"
"github.com/deatil/go-cryptobin/dh/ecdh"
cryptobin_tool "github.com/deatil/go-cryptobin/tool"
)
// 私钥
func (this Ecdh) FromPrivateKey(key []byte) Ecdh {
parsedKey, err := this.ParsePrivateKeyFromPEM(key)
if err != nil {
return this.AppendError(err)
}
this.privateKey = parsedKey.(*ecdh.PrivateKey)
return this
}
// 私钥带密码
func (this Ecdh) FromPrivateKeyWithPassword(key []byte, password string) Ecdh {
parsedKey, err := this.ParsePrivateKeyFromPEMWithPassword(key, password)
if err != nil {
return this.AppendError(err)
}
this.privateKey = parsedKey.(*ecdh.PrivateKey)
return this
}
// 公钥
func (this Ecdh) FromPublicKey(key []byte) Ecdh {
parsedKey, err := this.ParsePublicKeyFromPEM(key)
if err != nil {
return this.AppendError(err)
}
this.publicKey = parsedKey.(*ecdh.PublicKey)
return this
}
// 根据私钥 x, y 生成
func (this Ecdh) FromKeyXYHexString(xString string, yString string) Ecdh {
encoding := cryptobin_tool.NewEncoding()
x, _ := encoding.HexDecode(xString)
y, _ := encoding.HexDecode(yString)
priv := &ecdh.PrivateKey{}
priv.X = x
priv.PublicKey.Y = y
priv.PublicKey.Curve = this.curve
this.privateKey = priv
this.publicKey = &priv.PublicKey
return this
}
// 根据私钥 x 生成
func (this Ecdh) FromPrivateKeyXHexString(xString string) Ecdh {
encoding := cryptobin_tool.NewEncoding()
x, _ := encoding.HexDecode(xString)
priv := &ecdh.PrivateKey{}
priv.X = x
priv.PublicKey.Curve = this.curve
public, _ := ecdh.GeneratePublicKey(priv)
priv.PublicKey = *public
this.privateKey = priv
return this
}
// 根据公钥 y 生成
func (this Ecdh) FromPublicKeyYHexString(yString string) Ecdh {
encoding := cryptobin_tool.NewEncoding()
y, _ := encoding.HexDecode(yString)
public := &ecdh.PublicKey{}
public.Y = y
public.Curve = this.curve
this.publicKey = public
return this
}
// 生成密钥
func (this Ecdh) GenerateKey() Ecdh {
privateKey, publicKey, err := ecdh.GenerateKey(this.curve, rand.Reader)
this.privateKey = privateKey
this.publicKey = publicKey
return this.AppendError(err)
}