-
Notifications
You must be signed in to change notification settings - Fork 178
/
keys.go
195 lines (171 loc) · 5.37 KB
/
keys.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
188
189
190
191
192
193
194
195
package encodable
import (
"encoding/json"
"fmt"
"io"
"github.com/ethereum/go-ethereum/rlp"
"github.com/vmihailenco/msgpack"
"github.com/onflow/flow-go/crypto"
)
// NetworkPubKey wraps a public key and allows it to be JSON encoded and decoded. It is not defined in the
// crypto package since the crypto package should not know about the different key types.
type NetworkPubKey struct {
crypto.PublicKey
}
func (pub NetworkPubKey) MarshalJSON() ([]byte, error) {
if pub.PublicKey == nil {
return json.Marshal(nil)
}
return json.Marshal(pub.Encode())
}
func (pub *NetworkPubKey) UnmarshalJSON(b []byte) error {
var bz []byte
if err := json.Unmarshal(b, &bz); err != nil {
return err
}
if len(bz) == 0 {
return nil
}
var err error
pub.PublicKey, err = crypto.DecodePublicKey(crypto.ECDSAP256, bz)
return err
}
// NetworkPrivKey wraps a private key and allows it to be JSON encoded and decoded. It is not defined in the
// crypto package since the crypto package should not know about the different key types. More importantly, private
// keys should not be automatically encodable/serializable to prevent accidental secret sharing. The bootstrapping
// package is an exception, since it generates private keys that need to be serialized.
type NetworkPrivKey struct {
crypto.PrivateKey
}
func (priv NetworkPrivKey) MarshalJSON() ([]byte, error) {
if priv.PrivateKey == nil {
return json.Marshal(nil)
}
return json.Marshal(priv.Encode())
}
func (priv *NetworkPrivKey) UnmarshalJSON(b []byte) error {
var bz []byte
if err := json.Unmarshal(b, &bz); err != nil {
return err
}
if len(bz) == 0 {
return nil
}
var err error
priv.PrivateKey, err = crypto.DecodePrivateKey(crypto.ECDSAP256, bz)
return err
}
// StakingPubKey wraps a public key and allows it to be JSON encoded and decoded. It is not defined in the
// crypto package since the crypto package should not know about the different key types.
type StakingPubKey struct {
crypto.PublicKey
}
func (pub StakingPubKey) MarshalJSON() ([]byte, error) {
if pub.PublicKey == nil {
return json.Marshal(nil)
}
return json.Marshal(pub.Encode())
}
func (pub *StakingPubKey) UnmarshalJSON(b []byte) error {
var bz []byte
if err := json.Unmarshal(b, &bz); err != nil {
return err
}
if len(bz) == 0 {
return nil
}
var err error
pub.PublicKey, err = crypto.DecodePublicKey(crypto.BLSBLS12381, bz)
return err
}
// StakingPrivKey wraps a private key and allows it to be JSON encoded and decoded. It is not defined in the
// crypto package since the crypto package should not know about the different key types. More importantly, private
// keys should not be automatically encodable/serializable to prevent accidental secret sharing. The bootstrapping
// package is an exception, since it generates private keys that need to be serialized.
type StakingPrivKey struct {
crypto.PrivateKey
}
func (priv StakingPrivKey) MarshalJSON() ([]byte, error) {
if priv.PrivateKey == nil {
return json.Marshal(nil)
}
return json.Marshal(priv.Encode())
}
func (priv *StakingPrivKey) UnmarshalJSON(b []byte) error {
var bz []byte
if err := json.Unmarshal(b, &bz); err != nil {
return err
}
if len(bz) == 0 {
return nil
}
var err error
priv.PrivateKey, err = crypto.DecodePrivateKey(crypto.BLSBLS12381, bz)
return err
}
// RandomBeaconPubKey wraps a public key and allows it to be JSON encoded and decoded. It is not defined in the
// crypto package since the crypto package should not know about the different key types.
type RandomBeaconPubKey struct {
crypto.PublicKey
}
func (pub RandomBeaconPubKey) MarshalJSON() ([]byte, error) {
if pub.PublicKey == nil {
return json.Marshal(nil)
}
return json.Marshal(pub.Encode())
}
func (pub *RandomBeaconPubKey) UnmarshalJSON(b []byte) error {
var bz []byte
if err := json.Unmarshal(b, &bz); err != nil {
return err
}
if len(bz) == 0 {
return nil
}
var err error
pub.PublicKey, err = crypto.DecodePublicKey(crypto.BLSBLS12381, bz)
return err
}
func (pub RandomBeaconPubKey) MarshalMsgpack() ([]byte, error) {
if pub.PublicKey == nil {
return nil, fmt.Errorf("empty public key")
}
return msgpack.Marshal(pub.PublicKey.Encode())
}
func (pub *RandomBeaconPubKey) UnmarshalMsgpack(b []byte) error {
var bz []byte
if err := msgpack.Unmarshal(b, &bz); err != nil {
return err
}
var err error
pub.PublicKey, err = crypto.DecodePublicKey(crypto.BLSBLS12381, bz)
return err
}
func (pub *RandomBeaconPubKey) EncodeRLP(w io.Writer) error {
return rlp.Encode(w, pub.PublicKey.Encode())
}
// RandomBeaconPrivKey wraps a private key and allows it to be JSON encoded and decoded. It is not defined in
// the crypto package since the crypto package should not know about the different key types. More importantly, private
// keys should not be automatically encodable/serializable to prevent accidental secret sharing. The bootstrapping
// package is an exception, since it generates private keys that need to be serialized.
type RandomBeaconPrivKey struct {
crypto.PrivateKey
}
func (priv RandomBeaconPrivKey) MarshalJSON() ([]byte, error) {
if priv.PrivateKey == nil {
return json.Marshal(nil)
}
return json.Marshal(priv.Encode())
}
func (priv *RandomBeaconPrivKey) UnmarshalJSON(b []byte) error {
var bz []byte
if err := json.Unmarshal(b, &bz); err != nil {
return err
}
if len(bz) == 0 {
return nil
}
var err error
priv.PrivateKey, err = crypto.DecodePrivateKey(crypto.BLSBLS12381, bz)
return err
}