-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathprivate_key.go
More file actions
194 lines (162 loc) · 5.61 KB
/
Copy pathprivate_key.go
File metadata and controls
194 lines (162 loc) · 5.61 KB
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
188
189
190
191
192
193
194
package bitcoin
import (
"encoding/hex"
ec "github.com/bsv-blockchain/go-sdk/primitives/ec"
chaincfg "github.com/bsv-blockchain/go-sdk/transaction/chaincfg"
)
// 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 *ec.PrivateKey,
pubKey *ec.PublicKey,
) (*ec.PrivateKey, *ec.PublicKey) {
return ec.PrivateKeyFromBytes(
generateSharedSecret(privateKey, pubKey),
)
}
// PrivateKeyFromString turns a private key (hex encoded string) into an ec.PrivateKey
func PrivateKeyFromString(privateKey string) (*ec.PrivateKey, error) {
if len(privateKey) == 0 {
return nil, ErrPrivateKeyMissing
}
privateKeyBytes, err := hex.DecodeString(privateKey)
if err != nil {
return nil, err
}
rawKey, _ := ec.PrivateKeyFromBytes(privateKeyBytes)
return rawKey, nil
}
// CreatePrivateKey will create a new private key (*ec.PrivateKey)
func CreatePrivateKey() (*ec.PrivateKey, error) {
return ec.NewPrivateKey()
}
// 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.Serialize()), nil
}
// CreateWif will create a new uncompressed mainnet WIF (*WIF).
//
// Use CreateWifWithCompression to choose compressed (52-char, K/L...) vs
// uncompressed (51-char, 5...) public-key encoding.
func CreateWif() (*WIF, error) {
return CreateWifWithCompression(false)
}
// CreateWifWithCompression will create a new random mainnet WIF (*WIF) using the
// chosen public-key compression. Compressed WIFs are 52 characters and start
// with K or L; uncompressed WIFs are 51 characters and start with 5.
func CreateWifWithCompression(compress bool) (*WIF, error) {
privateKey, err := CreatePrivateKey()
if err != nil {
return nil, err
}
return NewWIF(privateKey, &chaincfg.MainNet, compress)
}
// CreateWifString will create a new uncompressed mainnet WIF (string).
//
// Use CreateWifStringWithCompression to choose compression.
func CreateWifString() (string, error) {
return CreateWifStringWithCompression(false)
}
// CreateWifStringWithCompression will create a new random mainnet WIF (string)
// using the chosen public-key compression.
func CreateWifStringWithCompression(compress bool) (string, error) {
wifKey, err := CreateWifWithCompression(compress)
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) (*ec.PrivateKey, *ec.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 := ec.PrivateKeyFromBytes(privateKeyBytes)
return rawKey, publicKey, nil
}
// PrivateKeyToWif will convert a private key to an uncompressed mainnet WIF (*WIF).
//
// Use PrivateKeyToWifWithCompression to choose compression.
func PrivateKeyToWif(privateKey string) (*WIF, error) {
return PrivateKeyToWifWithCompression(privateKey, false)
}
// PrivateKeyToWifWithCompression will convert a hex private key to a mainnet WIF
// (*WIF) using the chosen public-key compression.
func PrivateKeyToWifWithCompression(privateKey string, compress bool) (*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, _ := ec.PrivateKeyFromBytes(decodedKey)
// Create a new WIF (error never gets hit since (net) is set correctly)
return NewWIF(rawKey, &chaincfg.MainNet, compress)
}
// PrivateKeyToWifString will convert a private key to an uncompressed mainnet WIF (string).
//
// Use PrivateKeyToWifStringWithCompression to choose compression.
func PrivateKeyToWifString(privateKey string) (string, error) {
return PrivateKeyToWifStringWithCompression(privateKey, false)
}
// PrivateKeyToWifStringWithCompression will convert a hex private key to a
// mainnet WIF (string) using the chosen public-key compression.
func PrivateKeyToWifStringWithCompression(privateKey string, compress bool) (string, error) {
privateWif, err := PrivateKeyToWifWithCompression(privateKey, compress)
if err != nil {
return "", err
}
return privateWif.String(), nil
}
// WifToPrivateKey will convert a WIF to a private key (*ec.PrivateKey)
func WifToPrivateKey(wifKey string) (*ec.PrivateKey, error) {
// Missing wif?
if len(wifKey) == 0 {
return nil, ErrWifMissing
}
// Decode the wif
decodedWif, err := 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(wifKey string) (string, error) {
// Convert the wif to private key
privateKey, err := WifToPrivateKey(wifKey)
if err != nil {
return "", err
}
// Return the hex (string) version of the private key
return hex.EncodeToString(privateKey.Serialize()), nil
}
// WifFromString will convert a WIF (string) to a WIF (*WIF)
func WifFromString(wifKey string) (*WIF, error) {
// Missing wif?
if len(wifKey) == 0 {
return nil, ErrWifMissing
}
// Decode the WIF
decodedWif, err := DecodeWIF(wifKey)
if err != nil {
return nil, err
}
return decodedWif, nil
}