package
0.0.0-20240806012525-31387fc58976
Repository: https://github.com/scdoproject/go-scdo.git
Documentation: pkg.go.dev
# README
NOTE
This implementation is forked from cbergoon's implementation. I claim no authorship over this code apart from some minor modifications.
An implementation of a Merkle Tree written in Go. A Merkle Tree is a hash tree that provides an efficient way to verify the contents of a set data are present and untampered with.
# Functions
NewTree creates a new Merkle Tree using the specified contents.
# Structs
MerkleTree is the container for the tree.
# Interfaces
Content represents the data that is stored and verified by the tree.