mirror of
https://github.com/vbatts/merkle.git
synced 2024-12-02 19:15:39 +00:00
10 lines
213 B
Go
10 lines
213 B
Go
/*
|
|
What do you expect from a merkle tree API?
|
|
* streaming support
|
|
- building a tree from an io.Reader
|
|
- validating a tree from an io.Reader
|
|
* concurrency safe
|
|
- any buffer or hash.Hash reuse
|
|
*/
|
|
|
|
package merkle
|