A simple tool for checking integrity of a file by matching checksums with given strings.
Go to file
Sayantan Santra a59b6cea3c Clean up 2022-01-07 13:21:23 -06:00
.gitignore Added .gitignore 2020-01-19 18:47:39 +05:30
CheckIntegrity Clean up 2022-01-07 13:21:23 -06:00
LICENSE Change license from MIT to GPLv3 2021-04-20 00:33:34 +05:30
README.md Updated README.md 2022-01-07 02:58:37 -06:00

README.md

CheckIntegrity

It's a simple tool for checking integrity of a file by matching checksums with given strings. It works with most hashing algorithms (md5sum,sha1sum,sha256sum etc).

Dependencies

md5sum, sha1sum, sha256sum etc. (install only the ones you'll need).

Installation

git clone https://github.com/SinTan1729/CheckIntegrity
cd CheckIntegrity
chmod +x CheckIntegrity

Usage

The syntax is as follows :

CheckIntegrity algo filename hash

algo is the algorithm to use (e.g. md5, sha1, sha256 etc.)

filename is the relative/full path to file

hash is the given hash to match with

You can type CheckIntegrity -h for help.