checkasum 2.0.0

A small utility to verify the data integrity of a downloaded file with its expected checksum.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# checkasum

`checkasum` is a simple tool for hashing a file, and comparing the result with a known 'checksum' value.
This allows the user to confirm the integrity of a file downloaded from the internet. 
If the value returned from hashing a file matches the given checksum, 
then chances are that the file has not been tampered with.

## Examples

- `checkasum -m sha256 -p /path/to/file -e somechecksum`
- `checkasum --method sha256 --path /path/to/file --expected somechecksum`