|
|
|
|
|
by CJefferson
1121 days ago
|
|
Each level of the tree contains a hash of the hashes from the level below, so to verify the top hash you need only hash all its children (which are hashes themselves). Then you can explore a child, continuing recursively. At the bottom you find a hash of an actual file (or part of a file), then hash the file to check it’s validity. This allows you to only hash those parts of the tree you actually want to read. |
|