dircs

crates.io link

A small cross-platform utility to get a hash of a file or directory. Comes with a variety of hash functions to choose from.

Note: I mostly wrote this for personal use, and there might be a lot of rough edges! Feel free to submit pull requests or bug reports.

Installation

dircs is on crates.io and is installable using cargo:

bash cargo install dircs --locked

As of writing, dircs is built using Rust 1.69.0.

Usage

bash $ dircs /your/path/here /your/path/here -> 72ce3b5f2df28051cf7204712fe93de6b7b6d1f8e8fe5972b117a248423c290c

By default, dircs will use BLAKE3 with memmapping disabled, and an automatically chosen level of parallelism.

See more options by running dircs -h.

Supported hash functions

Currently, the following hash functions are supported:

How does this create hashes?

For a single file or a directory with just one file, dircs will simply hash the file using the given hashing function of choice, and output the bytes as a hex string.

For a directory with multiple files, it's a bit more involved, but also pretty simple/naive:

  1. For every single file, generate a hash using the chosen hashing function. This occurs in parallel if possible.
  2. With this generated list of hashes, sort them based on file name.
  3. Feed each hash in this order into the chosen hash function to generate one final hash, which is then output as a hex string.

Thanks

Thanks to: