Files
sha3sum/README.md
Pedro Albanese b9030dfe7f Update README.md
2021-04-06 01:42:17 -03:00

38 lines
850 B
Markdown

# SHA3SUM(2)
## sha3sum Parallel Implementation written in Go
<PRE>
SHA3 Keccak Hashsum Tool - ALBANESE Lab (c) 2020-2021
Usage of sha3sum:
sha3sum [-v] [-b N] [-c &lt;hash.ext&gt;] [-r] -t &lt;file.ext&gt;
-b int
Bits: 224, 256, 384 and 512. (default 224)
-c string
Check hashsum file.
-r Process directories recursively.
-t string
Target file/wildcard to generate hashsum list.
-v Verbose mode. (The exit code is always 0 in this mode)
</PRE>
### Examples:
#### Generate hashsum list:
<pre>
$ ./sha3sum -t "*.*" > hash.txt
</pre>
#### Generate recursive hashsum list:
<pre>
$ find . -type f -name "*.*" -exec ./sha3sum -t '{}' \; > hash.txt
</pre>
##### Always works in binary mode.
#### Check hashsum file:
<pre>
$ ./sha3sum [-v] -c hash.txt
</pre>
##### Exit code is always 0 in vebose mode.