plugeth/trie/secure_trie.go

41 lines
1.0 KiB
Go
Raw Normal View History

2015-02-28 19:52:10 +00:00
package trie
2015-03-16 15:28:16 +00:00
import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
)
2015-02-28 19:52:10 +00:00
type SecureTrie struct {
*Trie
}
2015-03-16 15:28:16 +00:00
func NewSecure(root common.Hash, backend Backend) *SecureTrie {
2015-02-28 19:52:10 +00:00
return &SecureTrie{New(root, backend)}
}
2015-03-16 15:28:16 +00:00
func (self *SecureTrie) Update(key common.Hash, value []byte) Node {
return self.Trie.Update(common.BytesToHash(crypto.Sha3(key[:])), value)
2015-02-28 19:52:10 +00:00
}
2015-03-16 15:28:16 +00:00
2015-02-28 19:52:10 +00:00
func (self *SecureTrie) UpdateString(key, value string) Node {
2015-03-16 15:28:16 +00:00
return self.Update(common.StringToHash(key), []byte(value))
2015-02-28 19:52:10 +00:00
}
2015-03-16 15:28:16 +00:00
func (self *SecureTrie) Get(key common.Hash) []byte {
return self.Trie.Get(common.BytesToHash(crypto.Sha3(key[:])))
2015-02-28 19:52:10 +00:00
}
func (self *SecureTrie) GetString(key string) []byte {
2015-03-16 15:28:16 +00:00
return self.Get(common.StringToHash(key))
2015-02-28 19:52:10 +00:00
}
2015-03-16 15:28:16 +00:00
func (self *SecureTrie) Delete(key common.Hash) Node {
return self.Trie.Delete(common.BytesToHash(crypto.Sha3(key[:])))
2015-02-28 19:52:10 +00:00
}
2015-03-03 11:15:58 +00:00
func (self *SecureTrie) DeleteString(key string) Node {
2015-03-16 15:28:16 +00:00
return self.Delete(common.StringToHash(key))
2015-02-28 19:52:10 +00:00
}
2015-03-03 11:25:44 +00:00
func (self *SecureTrie) Copy() *SecureTrie {
return &SecureTrie{self.Trie.Copy()}
}