Files
sha3sum/README.md
2021-10-12 14:07:12 -03:00

38 lines
850 B
Markdown

# SHA3SUM(2)
## sha3sum Parallel Implementation written in Go
<PRE>
SHA3 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 [-r] -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.
## License
This project is licensed under the ISC License.
##### Copyright (c) 2020-2021 Pedro Albanese - ALBANESE Lab.