aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/keypair.go
blob: cf5882e2c4dbea41890f3816b6fcec46228596f9 (plain) (blame)
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
package ethutil

import (
    "github.com/obscuren/secp256k1-go"
)

type KeyPair struct {
    PrivateKey []byte
    PublicKey  []byte

    // The associated account
    account *StateObject
}

func NewKeyPairFromSec(seckey []byte) (*KeyPair, error) {
    pubkey, err := secp256k1.GeneratePubKey(seckey)
    if err != nil {
        return nil, err
    }

    return &KeyPair{PrivateKey: seckey, PublicKey: pubkey}, nil
}

func NewKeyPairFromValue(val *Value) *KeyPair {
    v, _ := NewKeyPairFromSec(val.Bytes())

    return v
}

func (k *KeyPair) Address() []byte {
    return Sha3Bin(k.PublicKey[1:])[12:]
}

func (k *KeyPair) RlpEncode() []byte {
    return k.RlpValue().Encode()
}

func (k *KeyPair) RlpValue() *Value {
    return NewValue(k.PrivateKey)
}

type KeyRing struct {
    keys []*KeyPair
}

func (k *KeyRing) Add(pair *KeyPair) {
    k.keys = append(k.keys, pair)
}

func (k *KeyRing) Get(i int) *KeyPair {
    if len(k.keys) > i {
        return k.keys[i]
    }

    return nil
}

func (k *KeyRing) Len() int {
    return len(k.keys)
}

func (k *KeyRing) NewKeyPair(sec []byte) (*KeyPair, error) {
    keyPair, err := NewKeyPairFromSec(sec)
    if err != nil {
        return nil, err
    }

    k.Add(keyPair)
    Config.Db.Put([]byte("KeyRing"), k.RlpValue().Encode())

    return keyPair, nil
}

func (k *KeyRing) Reset() {
    Config.Db.Put([]byte("KeyRing"), nil)
    k.keys = nil
}

func (k *KeyRing) RlpValue() *Value {
    v := EmptyValue()
    for _, keyPair := range k.keys {
        v.Append(keyPair.RlpValue())
    }

    return v
}

// The public "singleton" keyring
var keyRing *KeyRing

func GetKeyRing() *KeyRing {
    if keyRing == nil {
        keyRing = &KeyRing{}

        data, _ := Config.Db.Get([]byte("KeyRing"))
        it := NewValueFromBytes(data).NewIterator()
        for it.Next() {
            v := it.Value()

            key, err := NewKeyPairFromSec(v.Bytes())
            if err != nil {
                panic(err)
            }
            keyRing.Add(key)
        }
    }

    return keyRing
}