vimwiki/tech/merkle_tree.wiki

11 lines
358 B
Plaintext
Raw Normal View History

2022-09-12 20:49:14 +00:00
= Merkle Tree =
A Merkle tree (aka hash tree) is a tree where
* every leaf is labelled with the hash of a data block
* every branch is labelled with the cryptographic hash of the labels of its
child nodes
A hash tree is primarily used to verify the integrity of very large
datastructures in a very efficient manner. One such common use is in Bittorrent