Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.43 KB

README.md

File metadata and controls

30 lines (23 loc) · 1.43 KB

HashApp

An utitlity written in python that can check and verify hash of a file

Installation Instructions

drawing Windows

  • Download the ZIP file for Windows from Releases.
  • Extract the ZIP file.
  • Copy hashapp.exe to your desired location.
  • Add the hashapp.exe location to your PATH environment variable. If you don't know how do that, check this link.

drawing Linux

Coming Soon

Usage

Getting hash of a file

hashapp get-hash --file filename/or/path/to/your/file --hash_func sha256

It 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.

Verifying hash of a file

hashapp verify --file filename/or/path/to/your/file --hash_func sha256 --hash 1719b9ed2519f52da363bef16266c80c679be1c3ad3b481722938a8f1a9c589b

It 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.