-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
private_key.go
173 lines (140 loc) · 4.27 KB
/
private_key.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
package bitcoin
import (
"crypto/ecdsa"
"encoding/hex"
"math/big"
"github.com/libsv/go-bk/bec"
"github.com/libsv/go-bk/chaincfg"
"github.com/libsv/go-bk/wif"
)
// GenerateSharedKeyPair creates shared keys that can be used to encrypt/decrypt data
// that can be decrypted by yourself (privateKey) and also the owner of the given public key
func GenerateSharedKeyPair(privateKey *bec.PrivateKey,
pubKey *bec.PublicKey) (*bec.PrivateKey, *bec.PublicKey) {
return bec.PrivKeyFromBytes(
bec.S256(),
bec.GenerateSharedSecret(privateKey, pubKey),
)
}
// PrivateKeyFromString turns a private key (hex encoded string) into an bec.PrivateKey
func PrivateKeyFromString(privateKey string) (*bec.PrivateKey, error) {
if len(privateKey) == 0 {
return nil, ErrPrivateKeyMissing
}
privateKeyBytes, err := hex.DecodeString(privateKey)
if err != nil {
return nil, err
}
x, y := bec.S256().ScalarBaseMult(privateKeyBytes)
ecdsaPubKey := ecdsa.PublicKey{
Curve: bec.S256(),
X: x,
Y: y,
}
return &bec.PrivateKey{PublicKey: ecdsaPubKey, D: new(big.Int).SetBytes(privateKeyBytes)}, nil
}
// CreatePrivateKey will create a new private key (*bec.PrivateKey)
func CreatePrivateKey() (*bec.PrivateKey, error) {
return bec.NewPrivateKey(bec.S256())
}
// CreatePrivateKeyString will create a new private key (hex encoded)
func CreatePrivateKeyString() (string, error) {
privateKey, err := CreatePrivateKey()
if err != nil {
return "", err
}
return hex.EncodeToString(privateKey.Serialise()), nil
}
// CreateWif will create a new WIF (*wif.WIF)
func CreateWif() (*wif.WIF, error) {
privateKey, err := CreatePrivateKey()
if err != nil {
return nil, err
}
return wif.NewWIF(privateKey, &chaincfg.MainNet, false)
}
// CreateWifString will create a new WIF (string)
func CreateWifString() (string, error) {
wifKey, err := CreateWif()
if err != nil {
return "", err
}
return wifKey.String(), nil
}
// PrivateAndPublicKeys will return both the private and public key in one method
// Expects a hex encoded privateKey
func PrivateAndPublicKeys(privateKey string) (*bec.PrivateKey, *bec.PublicKey, error) {
// No key?
if len(privateKey) == 0 {
return nil, nil, ErrPrivateKeyMissing
}
// Decode the private key into bytes
privateKeyBytes, err := hex.DecodeString(privateKey)
if err != nil {
return nil, nil, err
}
// Get the public and private key from the bytes
rawKey, publicKey := bec.PrivKeyFromBytes(bec.S256(), privateKeyBytes)
return rawKey, publicKey, nil
}
// PrivateKeyToWif will convert a private key to a WIF (*wif.WIF)
func PrivateKeyToWif(privateKey string) (*wif.WIF, error) {
// Missing private key
if len(privateKey) == 0 {
return nil, ErrPrivateKeyMissing
}
// Decode the private key
decodedKey, err := hex.DecodeString(privateKey)
if err != nil {
return nil, err
}
// Get the private key from bytes
rawKey, _ := bec.PrivKeyFromBytes(bec.S256(), decodedKey)
// Create a new WIF (error never gets hit since (net) is set correctly)
return wif.NewWIF(rawKey, &chaincfg.MainNet, false)
}
// PrivateKeyToWifString will convert a private key to a WIF (string)
func PrivateKeyToWifString(privateKey string) (string, error) {
privateWif, err := PrivateKeyToWif(privateKey)
if err != nil {
return "", err
}
return privateWif.String(), nil
}
// WifToPrivateKey will convert a WIF to a private key (*bec.PrivateKey)
func WifToPrivateKey(wifKey string) (*bec.PrivateKey, error) {
// Missing wif?
if len(wifKey) == 0 {
return nil, ErrWifMissing
}
// Decode the wif
decodedWif, err := wif.DecodeWIF(wifKey)
if err != nil {
return nil, err
}
// Return the private key
return decodedWif.PrivKey, nil
}
// WifToPrivateKeyString will convert a WIF to private key (string)
func WifToPrivateKeyString(wif string) (string, error) {
// Convert the wif to private key
privateKey, err := WifToPrivateKey(wif)
if err != nil {
return "", err
}
// Return the hex (string) version of the private key
return hex.EncodeToString(privateKey.Serialise()), nil
}
// WifFromString will convert a WIF (string) to a WIF (*wif.WIF)
func WifFromString(wifKey string) (*wif.WIF, error) {
// Missing wif?
if len(wifKey) == 0 {
return nil, ErrWifMissing
}
// Decode the WIF
decodedWif, err := wif.DecodeWIF(wifKey)
if err != nil {
return nil, err
}
return decodedWif, nil
}