Calculate multiple hash digests for a piece of data in parallel, one algo/thread.
Project description
MtHasher
Calculate multiple hash digests for a piece of data in parallel, one algo/thread.
Based on the code of Peter Wu peter@lekensteyn.nl (https://git.lekensteyn.nl/scripts/tree/digest.py).
Usage
From CLI
Add data over STDIN and/or as arguments and select the desired algorithms:
cat data.txt | python3 -m mthasher -i data2.txt - --sha1 --sha256 -o checksums.txt
At least one algorithm is mandatory and by default the script reads from STDIN and writes to STDOUT.
From Python
The exposed API is the following
ALGORITHMS_GUARANTEED
: The tuple of the supported algorithmsHasher()
: Single-threaded hasher, takes an iterable (e.g. list of algorithms to use)MtHasher()
Multi-threaded hasher, takes an iterable (e.g. list of algorithms to use)
Both hashers expose the following API
header
: tuple of header elements ("filename" and the list of algorithms in the supplied order)algos
: tuple of supplied algorithmshash_file()
: Takes a filename or a file-like object on bytes, returns the digest tuple in same order as header (the filename is omited)hash_multiple_files()
:Takes an iterable of filenames or file-like objects on bytes,returns the generator of filename + digest tuples in same order as header, one for every input object
Example
from io import BytesIO
from mthasher import MtHasher
hasher = MtHasher(('sha1', 'md5'))
filename_header, sha1_header, md5_header = hasher.header
sha1_digest, md5_digest = hasher.hash_file('data.txt')
for filename, sha1_digest, md5_digest in hasher.hash_multiple_files(('data.txt', open('data2.txt', 'rb'), '-', BytesIO('bytesstring'))):
# First the header and then the digests
print(filename, sha1_digest, md5_digest, sep='\t')
Supported algorithms
- md5
- sha1
- sha224
- sha256
- sha384
- sha512
- sha3_224
- sha3_256
- sha3_384
- sha3_512
- blake2b
- blake2s
License
Licensed under the MIT license http://opensource.org/licenses/MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mthasher-2.0.1.tar.gz
(5.4 kB
view details)
Built Distribution
File details
Details for the file mthasher-2.0.1.tar.gz
.
File metadata
- Download URL: mthasher-2.0.1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.8.10 Linux/5.4.0-96-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ba0a0fc7ea581acc2e97102fc69cc92dc799571a914880389d0466a87d6329d |
|
MD5 | 5b58ed4988167e8809883c1905bfa71f |
|
BLAKE2b-256 | 5d51a6840dbd2e30a209b902e147b5223b9044710dc9b4f71f960e728dd939db |
File details
Details for the file mthasher-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: mthasher-2.0.1-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.8.10 Linux/5.4.0-96-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40bd7a18615b03896d6781b176e17e2df82bc8578de865739c70078d3c50816d |
|
MD5 | 559f85231c8be188440d71d8aaa9f144 |
|
BLAKE2b-256 | 097ba20263ecb8832666cc1a50976b01034b21a7f952da6e65c601f600e4fd44 |