Command line interface to the hashlib library.
Go to file
2023-04-17 14:57:29 +02:00
src/hasher Created installable project 2023-04-17 14:24:05 +02:00
.gitignore Added initial hasher code 2023-04-17 13:52:47 +02:00
LICENSE Created installable project 2023-04-17 14:24:05 +02:00
pyproject.toml Extended Readme 2023-04-17 14:57:29 +02:00
README.md Extended Readme 2023-04-17 14:57:29 +02:00
requirements.txt Added initial hasher code 2023-04-17 13:52:47 +02:00

Hasher

GitHub PyPI

Command line interface to the hashlib library.

Installation

Install hasher from PyPI.

pip install hasher-cnml

Usage

Create a checksum (defaults to MD5) of the a sample file using:

python -m hasher file_to_hash.txt

Or instead specify the hash algorithm directly (all algorithms from hashlib that are available locally)

python -m hasher -a sha1 file_to_hash.txt

View the usage information:

python -m hasher -h

Authors