This repository has been archived by the owner on May 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 346
/
private_account.go
143 lines (121 loc) · 3.93 KB
/
private_account.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
// Copyright 2017 Monax Industries Limited
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package acm
import (
"fmt"
"encoding/json"
"github.com/hyperledger/burrow/crypto"
)
type AddressableSigner interface {
crypto.Addressable
crypto.Signer
}
type PrivateAccount struct {
concretePrivateAccount *ConcretePrivateAccount
}
func (pa *PrivateAccount) GetAddress() crypto.Address {
return pa.concretePrivateAccount.Address
}
func (pa *PrivateAccount) GetPublicKey() crypto.PublicKey {
return pa.concretePrivateAccount.PublicKey
}
func (pa *PrivateAccount) Sign(msg []byte) (crypto.Signature, error) {
return pa.concretePrivateAccount.PrivateKey.Sign(msg)
}
func (pa PrivateAccount) MarshalJSON() ([]byte, error) {
return json.Marshal(pa.concretePrivateAccount)
}
func (pa *PrivateAccount) UnmarshalJSON(bytes []byte) error {
err := json.Unmarshal(bytes, &pa.concretePrivateAccount)
if err != nil {
return err
}
return nil
}
func (pa *PrivateAccount) PrivateKey() crypto.PrivateKey {
return pa.concretePrivateAccount.PrivateKey
}
func (pa *PrivateAccount) ConcretePrivateAccount() *ConcretePrivateAccount {
cpa := *pa.concretePrivateAccount
return &cpa
}
func (pa *PrivateAccount) String() string {
return fmt.Sprintf("PrivateAccount{%v}", pa.GetAddress())
}
type ConcretePrivateAccount struct {
Address crypto.Address
PublicKey crypto.PublicKey
PrivateKey crypto.PrivateKey
}
func (cpa *ConcretePrivateAccount) String() string {
return fmt.Sprintf("ConcretePrivateAccount{%v}", cpa.Address)
}
func (cpa ConcretePrivateAccount) PrivateAccount() *PrivateAccount {
return &PrivateAccount{
concretePrivateAccount: &cpa,
}
}
func PrivateAccountFromPrivateKey(privateKey crypto.PrivateKey) *PrivateAccount {
publicKey := privateKey.GetPublicKey()
return &PrivateAccount{
concretePrivateAccount: &ConcretePrivateAccount{
PrivateKey: privateKey,
PublicKey: publicKey,
Address: publicKey.GetAddress(),
},
}
}
// Convert slice of ConcretePrivateAccounts to slice of SigningAccounts
func SigningAccounts(concretePrivateAccounts []*PrivateAccount) []AddressableSigner {
signingAccounts := make([]AddressableSigner, len(concretePrivateAccounts))
for i, cpa := range concretePrivateAccounts {
signingAccounts[i] = cpa
}
return signingAccounts
}
// Generates a new account with private key.
func GeneratePrivateAccount() (*PrivateAccount, error) {
privateKey, err := crypto.GeneratePrivateKey(nil, crypto.CurveTypeEd25519)
if err != nil {
return nil, err
}
publicKey := privateKey.GetPublicKey()
return ConcretePrivateAccount{
Address: publicKey.GetAddress(),
PublicKey: publicKey,
PrivateKey: privateKey,
}.PrivateAccount(), nil
}
// Generates a new account with private key from SHA256 hash of a secret
func GeneratePrivateAccountFromSecret(secret string) *PrivateAccount {
privateKey := crypto.PrivateKeyFromSecret(secret, crypto.CurveTypeEd25519)
publicKey := privateKey.GetPublicKey()
return ConcretePrivateAccount{
Address: publicKey.GetAddress(),
PublicKey: publicKey,
PrivateKey: privateKey,
}.PrivateAccount()
}
func PrivateAccountFromPrivateKeyBytes(privKeyBytes []byte) (*PrivateAccount, error) {
privateKey, err := crypto.PrivateKeyFromRawBytes(privKeyBytes, crypto.CurveTypeEd25519)
if err != nil {
return nil, err
}
publicKey := privateKey.GetPublicKey()
return ConcretePrivateAccount{
Address: publicKey.GetAddress(),
PublicKey: publicKey,
PrivateKey: privateKey,
}.PrivateAccount(), nil
}