37 lines
1.6 KiB
Markdown
37 lines
1.6 KiB
Markdown
# SHA3SUM(2)
|
|
[](https://github.com/pedroalbanese/sha3sum/blob/master/LICENSE.md)
|
|
[](http://godoc.org/github.com/pedroalbanese/sha3sum)
|
|
[](https://github.com/pedroalbanese/sha3sum/releases)
|
|
[](https://goreportcard.com/report/github.com/pedroalbanese/sha3sum)
|
|
[](https://golang.org)
|
|
[](https://github.com/pedroalbanese/sha3sum/releases)
|
|
### sha3sum Parallel Implementation written in Go
|
|
|
|
<PRE>Usage of sha3sum:
|
|
sha3sum [-v] [-b N] [-c <hash.ext>] [-r] <file.ext>
|
|
-b int
|
|
Bits: 224, 256, 384 and 512. (default 256)
|
|
-c string
|
|
Check hashsum file.
|
|
-r Process directories recursively.
|
|
-v Verbose mode. (The exit code is always 0 in this mode)</PRE>
|
|
|
|
### Examples:
|
|
|
|
#### Generate hashsum list:
|
|
<pre>
|
|
$ ./sha3sum [-r] "*.*" > hash.txt
|
|
</pre>
|
|
##### Always works in binary mode.
|
|
|
|
#### Check hashsum file:
|
|
<pre>
|
|
$ ./sha3sum [-v] -c hash.txt
|
|
</pre>
|
|
##### Exit code is always 0 in verbose mode.
|
|
|
|
## License
|
|
|
|
This project is licensed under the ISC License.
|
|
##### Copyright (c) 2020-2021 Pedro Albanese - ALBANESE Research Lab.
|