https://github.com/chingc/hash-brown
A convenient interface for hashlib and zlib.
https://github.com/chingc/hash-brown
checksum crc32 digest hashlib md5 sha zlib
Last synced: 18 days ago
JSON representation
A convenient interface for hashlib and zlib.
- Host: GitHub
- URL: https://github.com/chingc/hash-brown
- Owner: chingc
- License: mit
- Created: 2010-11-25T21:19:02.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2022-12-28T22:06:23.000Z (over 2 years ago)
- Last Synced: 2025-04-08T14:04:09.696Z (20 days ago)
- Topics: checksum, crc32, digest, hashlib, md5, sha, zlib
- Language: Python
- Homepage:
- Size: 214 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hash Brown
[](https://circleci.com/gh/chingc/workflows/Hash-Brown) [](https://codecov.io/gh/chingc/Hash-Brown) [](./LICENSE) [](https://pypi.org/project/hb/)
A simple command-line utility for calculating checksums.
## Install
```
pip install hb
```## Usage
Calculate the sha1 of a file:
```
$ hb -a sha1 hello.txt
sha1 (hello.txt) = 493a253abf93d705d67edeb463134a5c8752fc9d
```Check to see if file matches a given checksum:
```
$ hb -a md5 hello.txt -g 77060c267470021a97392b815138733e
md5 (hello.txt) = 77060c267470021a97392b815138733e OK$ hb -a md5 hello.txt -g 0123456789abcdef
md5 (hello.txt) = 0123456789abcdef BAD
```Checksums can be read from a file:
```
$ hb -c checksums.txt
sha512 (hello.txt) = 493a253abf93d705d67edeb463134a5c8752fc9d OK
sha512 (world.txt) = 683e4ee04e75e71a6dca42807001f00be1fcb2a3 OK
sha512 (image.jpg) = f3a53e6c2743645f08faedadd7a2c57cbc38632f OK
sha512 (video.mp4) = 03ba9191fc4cd74f218df58542643fbc07dca532 OK
```Hash Brown outputs its results in BSD style. The checksum files are also BSD style.
All files are read in binary mode.
Globbing and recursive globbing are supported via `*` and `**` respectively.
Dotfiles are not included when globbing and need to be specified explicitly.
## Options
```
-a, --algorithm [blake2b|blake2s|md5|sha1|sha224|sha256|sha384|sha512|adler32|crc32]
-c, --check Read checksums from a file.
-g, --given TEXT See if the given checksum `TEXT` matches the
computed checksum. (use with -a)
-p, --parallel Process files in parallel.
-q, --quiet Hide results that are OK. (use with -c)
-t, --timer Display elapsed time in seconds.
--version Show the version and exit.
-h, --help Show this message and exit.
```