An utitlity written in python that can check and verify hash of a file
- Download the ZIP file for Windows from Releases.
- Extract the ZIP file.
- Copy
hashapp.exeto your desired location. - Add the
hashapp.exelocation to yourPATHenvironment variable. If you don't know how do that, check this link.
Coming Soon
hashapp get-hash --file filename/or/path/to/your/file --hash_func sha256It will print out the hash of the file.
NOTE: You can use -f instead of --file and -hf instead of --hash-func. --hash-func is optional. Default value of it is sha256.
hashapp verify --file filename/or/path/to/your/file --hash_func sha256 --hash 1719b9ed2519f52da363bef16266c80c679be1c3ad3b481722938a8f1a9c589bIt will print out 0 if the file is OK otherwise it will print out 1.
NOTE: You can use -f instead of --file, -hf instead of --hash-func and -h instead of --hash. --hash-func is optional. Default value of it is sha256.