merkle-tree-stream/README.md

54 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

# merkle-tree-stream
[![Build Status](https://drone.autonomic.zone/api/badges/hyperpy/merkle-tree-stream/status.svg)](https://drone.autonomic.zone/hyperpy/merkle-tree-stream)
## A stream that generates a merkle tree based on the incoming data
2020-07-07 13:42:41 +00:00
> A hash tree or merkle tree is a tree in which every leaf node is labelled
> with the hash of a data block and every non-leaf node is labelled with the
> cryptographic hash of the labels of its child nodes. Merkle trees in Dat are
> specialized flat trees that contain the content of the archives.
## Install
```sh
$ pip install merkle-tree-stream
```
2020-07-07 13:42:41 +00:00
## Example
```python
import hashlib
2020-08-05 06:23:38 +00:00
from merkle_tree_stream import MerkleTreeGenerator
2020-07-07 13:42:41 +00:00
def _leaf(node, roots=None):
return hashlib.sha256(node.data).digest()
2020-08-05 06:23:38 +00:00
2020-07-07 13:42:41 +00:00
def _parent(first, second):
sha256 = hashlib.sha256()
sha256.update(first.data)
sha256.update(second.data)
return sha256.digest()
2020-08-05 06:23:38 +00:00
merkle = MerkleTreeGenerator(leaf=_leaf, parent=_parent)
2020-07-07 13:42:41 +00:00
merkle.write(b"a")
merkle.write(b"b")
2020-08-05 06:23:38 +00:00
print(merkle._nodes)
```
Output:
```sh
[
MerkleTreeNode(index=0, parent=1, size=1, data=b'a', hash=b'...'),
MerkleTreeNode(index=2, parent=1, size=1, data=b'b', hash=b'...'),
MerkleTreeNode(index=1, parent=3, size=2, data=b'', hash=b'...')
]
2020-07-07 13:42:41 +00:00
```