Ensuring the integrity of files through hash sums
___ ___ .__ ________ .___
/ | \_____ _____| |__ / _____/ __ _______ _______ __| _/
/ ~ \__ \ / ___/ | \/ \ ___| | \__ \\_ __ \/ __ |
\ Y // __ \_\___ \| Y \ \_\ \ | // __ \| | \/ /_/ |
\___|_ /(____ /____ >___| /\______ /____/(____ /__| \____ |
\/ \/ \/ \/ \/ \/ \/
HashGuard is a powerful command-line tool designed to simplify the process of downloading files from the internet and ensuring their integrity using hash sums. With HashGuard, you can confidently download files and verify their authenticity, providing an extra layer of security to your downloads. It is also possible to verify files on the local system.
To install Rust on your system, just go to the official Rust website, download and install the Rustup toolchain manager.
Notice: Please refer to the installation instructions for your operating system. For certain operating systems, build tools need to be installed before you can use Rust.
HashGuard is also available on crates.io Rust community's crate registry.
So you can easily install it as binary on your local system.
Use the follow command:
cargo install hashguard
To build this project from scratch follow these steps:
cargo build --release
hashguard download <URL> <HASH_SUM> [OPTIONS]
hashguard local <FILE_PATH> <HASH_SUM> [OPTIONS]
Usage Examples:
hashguard download https://example.com/file.zip a1b2c3d4e5f6
Verify a local file with a hash sum using SHA-1:
hashguard local /path/to/local_file.txt 1a2b3c4d5e6f -a sha1
Use a specific output directory for the downloaded file:
hashguard download https://example.com/image.jpg 1a2b3c4d5e6f -o /path/to/output_directory
Get general help:
hashguard --help
Get help on a specific command:
hashguard download --help
hashguard local --help
No colored console output under windows?
HashGuard of course also works with colored console output (errors = red, hints = yellow, success = green).
If no colored text is diplayed in the CMD or PowerShell, instead the ANSI escape sequences before and after an output,
then enabling ANSI escape sequence support may help. Open a CMD or PowerShell as admin and execute following command:
reg add HKCU\Console /v VirtualTerminalLevel /t REG_DWORD /d 1
This command adds a registry key that enables the conpty feature, which provides ANSI escape sequence support in the Windows console.
Please re-open the terminal and the colored output should work.
Contributions and bug reports are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on my GitHub repository.
HashGuard is released under the MIT License.
While HashGuard aims to provide reliable file verification, it is essential to exercise caution when downloading files from the internet or using local files for verification. Always ensure that you trust the source and the provided hash sum before proceeding.