An open API service indexing awesome lists of open source software.

https://github.com/doumanash/rusty-hash

Simple cli utility to calculate file checksums
https://github.com/doumanash/rusty-hash

Last synced: 2 months ago
JSON representation

Simple cli utility to calculate file checksums

Awesome Lists containing this project

README

        

# rusty-hash

[![Build status](https://ci.appveyor.com/api/projects/status/l0r5rxi0keg8unw7/branch/master?svg=true)](https://ci.appveyor.com/project/DoumanAsh/rusty-hash/branch/master)

Simple utility for checksum calculation

```
Usage: rusty_hash [-c | -o | -p] [algorithms] ...

Algorithms:
--md5 Enables md5 calculation.
--sha[num] Enables sha calculation. num can be [1, 256, 512]

Mode:
Mutually exclusive.
-c --check Verifies checksum from files.
-o --output Write calculations into files with corresponding extension.
-i --interactive Enters into interactive mode where you can input or drop two files to compare.
-p --print Prints checksums to stdout. Default.
```