forked from BitcoinSchema/go-bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivate_key.go
More file actions
137 lines (112 loc) · 3.67 KB
/
private_key.go
File metadata and controls
137 lines (112 loc) · 3.67 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
package bitcoin
import (
"crypto/ecdsa"
"encoding/hex"
"errors"
"math/big"
"github.com/bitcoinsv/bsvd/bsvec"
"github.com/bitcoinsv/bsvd/chaincfg"
"github.com/bitcoinsv/bsvutil"
)
// 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 *bsvec.PrivateKey,
pubKey *bsvec.PublicKey) (*bsvec.PrivateKey, *bsvec.PublicKey) {
return bsvec.PrivKeyFromBytes(
bsvec.S256(),
bsvec.GenerateSharedSecret(privateKey, pubKey),
)
}
// PrivateKeyFromString turns a private key (hex encoded string) into an bsvec.PrivateKey
func PrivateKeyFromString(privateKey string) (*bsvec.PrivateKey, error) {
if len(privateKey) == 0 {
return nil, errors.New("privateKey is missing")
}
privateKeyBytes, err := hex.DecodeString(privateKey)
if err != nil {
return nil, err
}
x, y := bsvec.S256().ScalarBaseMult(privateKeyBytes)
ecdsaPubKey := ecdsa.PublicKey{
Curve: bsvec.S256(),
X: x,
Y: y,
}
return &bsvec.PrivateKey{PublicKey: ecdsaPubKey, D: new(big.Int).SetBytes(privateKeyBytes)}, nil
}
// CreatePrivateKey will create a new private key (*bsvec.PrivateKey)
func CreatePrivateKey() (*bsvec.PrivateKey, error) {
return bsvec.NewPrivateKey(bsvec.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.Serialize()), nil
}
// PrivateAndPublicKeys will return both the private and public key in one method
// Expects a hex encoded privateKey
func PrivateAndPublicKeys(privateKey string) (*bsvec.PrivateKey, *bsvec.PublicKey, error) {
// No key?
if len(privateKey) == 0 {
return nil, nil, errors.New("missing privateKey")
}
// 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 := bsvec.PrivKeyFromBytes(bsvec.S256(), privateKeyBytes)
return rawKey, publicKey, nil
}
// PrivateKeyToWif will convert a private key to a WIF (*bsvutil.WIF)
func PrivateKeyToWif(privateKey string) (*bsvutil.WIF, error) {
// Missing private key
if len(privateKey) == 0 {
return nil, errors.New("missing privateKey")
}
// Decode the private key
decodedKey, err := hex.DecodeString(privateKey)
if err != nil {
return nil, err
}
// Get the private key from bytes
rawKey, _ := bsvec.PrivKeyFromBytes(bsvec.S256(), decodedKey)
// Create a new WIF (error never gets hit since (net) is set correctly)
return bsvutil.NewWIF(rawKey, &chaincfg.MainNetParams, false)
}
// PrivateKeyToWifString will convert a private key to a WIF (string)
func PrivateKeyToWifString(privateKey string) (string, error) {
wif, err := PrivateKeyToWif(privateKey)
if err != nil {
return "", err
}
return wif.String(), nil
}
// WifToPrivateKey will convert a WIF to a private key (*bsvec.PrivateKey)
func WifToPrivateKey(wif string) (*bsvec.PrivateKey, error) {
// Missing wif?
if len(wif) == 0 {
return nil, errors.New("missing wif")
}
// Decode the wif
decodedWif, err := bsvutil.DecodeWIF(wif)
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.Serialize()), nil
}