Documentation
¶
Index ¶
- Constants
- Variables
- func BytesToHex(bs []byte) string
- func BytesToUint32(b []byte) uint32
- func CheckProof(root Hash, proof []byte, hi Hash, ht Hash, numLevels int) bool
- func HexToBytes(h string) ([]byte, error)
- func Uint32ToBytes(u uint32) []byte
- type Hash
- type MerkleTree
- func (mt *MerkleTree) Add(v Value) error
- func (mt *MerkleTree) GenerateProof(hi Hash) ([]byte, error)
- func (mt *MerkleTree) Get(key Hash) (byte, uint32, []byte, error)
- func (mt *MerkleTree) GetValueInPos(hi Hash) ([]byte, error)
- func (mt *MerkleTree) Insert(key Hash, nodeType byte, indexLength uint32, nodeBytes []byte) error
- func (mt *MerkleTree) NumLevels() int
- func (mt *MerkleTree) PrintFullMT()
- func (mt *MerkleTree) PrintLevelsMT(maxLevel int)
- func (mt *MerkleTree) Root() Hash
- type Value
Constants ¶
const (
// EmptyNodeType indicates the type of an EmptyNodeValue Node
EmptyNodeType = 00
)
Variables ¶
var ( // ErrNodeAlreadyExists is an error that indicates that a node already exists in the merkletree database ErrNodeAlreadyExists = errors.New("node already exists") // EmptyNodeValue is a [32]byte EmptyNodeValue array, all to zero EmptyNodeValue = Hash{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} )
Functions ¶
func BytesToHex ¶
BytesToHex encodes an array of bytes into a string in hex.
func BytesToUint32 ¶
BytesToUint32 returns a uint32 from a byte array
func CheckProof ¶
CheckProof validates the Merkle Proof for the leafHash and root
func HexToBytes ¶
HexToBytes decodes a hex string into an array of bytes.
func Uint32ToBytes ¶
Uint32ToBytes returns a byte array from a uint32
Types ¶
type Hash ¶
type Hash [32]byte
Hash used in this tree, is the [32]byte keccak()
type MerkleTree ¶
type MerkleTree struct {
// contains filtered or unexported fields
}
MerkleTree struct with the main elements of the Merkle Tree
func New ¶
func New(storage *leveldb.DB, numLevels int) (*MerkleTree, error)
New generates a new Merkle Tree
func (*MerkleTree) GenerateProof ¶
func (mt *MerkleTree) GenerateProof(hi Hash) ([]byte, error)
GenerateProof generates the Merkle Proof from a given leafHash for the current root
func (*MerkleTree) GetValueInPos ¶
func (mt *MerkleTree) GetValueInPos(hi Hash) ([]byte, error)
GetValueInPos returns the merkletree value in the position of the Hash of the Index (Hi)
func (*MerkleTree) NumLevels ¶
func (mt *MerkleTree) NumLevels() int
NumLevels returns the merkletree.NumLevels
func (*MerkleTree) PrintFullMT ¶
func (mt *MerkleTree) PrintFullMT()
PrintFullMT prints the tree in the terminal, all the levels with all the nodes
func (*MerkleTree) PrintLevelsMT ¶
func (mt *MerkleTree) PrintLevelsMT(maxLevel int)
PrintLevelsMT prints the tree in the terminal until a specified depth