MerkleTree

What It Does

Creates a Merkle tree for a directory structure. A Merkle tree is a representation of the contents of the directory and its subdirectories in terms of hashes.

A file is represented by the hash of its contents. A directory is represented by the hash of the hashes of its members, sorted. This makes it very easy to verify the contents of a directory:

merkleize -x -i  .

outputs a single hash, a hexadecimal number. If any file in the directory structure has been changed, the output from the above command will also change.

SHA, the Secure Hash Algorithm

This package uses hash algorithms specified in the Secure Hash Standard for hashing. This is a standard published by the US National Institute of Standards and Techology (NIST).

SHA is a cryptographically secure hash, meaning that for all practical purposes it is impossible to find two documents with the same hash. In other words, the SHA hashes are meant to be one-way: given a document, it is very easy to determine its SHA hash, but given such a hash the only practical way to find out what document it corresponds to is to hash all candidate matches and compare the resultant hash with the one you are searching for.

MerkleTree currently uses either the older 160 bit/20 byte SHA-1 or the more recent and supposedly more secure SHA-256, a 256 bit/32 byte hash.

What It’s Used For

Verifying the integrity of file systems, of directory structures.

Command Line

This is the Python command line; implementations in other languages should conform.

usage: merkleize [options]
where the options are
  -h, --help           to see this very useful message
  -1, --usingSHA1      use SHA-1 hash instead of default SHA-256
  -d  --outDir DIR     write serialized MerkleTree here
  -i, --inDir DIR      where DIR names directory being scanned
  -j, --justShow       list options and exit
  -m  --showTree       output the MerkleTree hash/filename pairs
  -o, --outFile NAME   write output to this file name
  -P, --match PAT      include ONLY files with matching names
  -t, --showTimestamp  output UTC timestamp to command line
  -v, --verbose        verbose: whether the program is chatty
  -V, --version        show version information
  -x, --hashOutput     whether to output the top level hash
  -X, --exclude PAT    don't include files with matching names

The default output file name is the UTC timestamp.


github link to project project