Skip to content
/ hashapp Public template

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

License

Notifications You must be signed in to change notification settings

NabilSadik2003/hashapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.