aboutsummaryrefslogtreecommitdiffstats
path: root/trie/secure_trie.go
blob: b9fa376b814d3ad1a5ea33666b41414fcba780b8 (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
package trie

import "github.com/ethereum/go-ethereum/crypto"

type SecureTrie struct {
    *Trie
}

func NewSecure(root []byte, backend Backend) *SecureTrie {
    return &SecureTrie{New(root, backend)}
}

func (self *SecureTrie) Update(key, value []byte) Node {
    return self.Trie.Update(crypto.Sha3(key), value)
}
func (self *SecureTrie) UpdateString(key, value string) Node {
    return self.Update([]byte(key), []byte(value))
}

func (self *SecureTrie) Get(key []byte) []byte {
    return self.Trie.Get(crypto.Sha3(key))
}
func (self *SecureTrie) GetString(key string) []byte {
    return self.Get([]byte(key))
}

func (self *SecureTrie) Delete(key []byte) Node {
    return self.Trie.Delete(crypto.Sha3(key))
}
func (self *SecureTrie) DeleteString(key string) Node {
    return self.Delete([]byte(key))
}

func (self *SecureTrie) Copy() *SecureTrie {
    return &SecureTrie{self.Trie.Copy()}
}