Pedro Albanese 35c10be686 Update README.md
2021-04-05 20:13:51 -03:00
2021-04-05 19:31:52 -03:00
2021-04-05 20:13:51 -03:00

SHA3SUM(2)

sha3sum Parallel Implementation written in Go

SHA3 Keccak Hashsum Tool - ALBANESE Lab (c) 2020-2021

Usage of sha3sum:
sha3sum [-v] [-b N] [-c ] -t <file.ext>

  -b int
        Bits: 224, 256, 384 and 512. (default 224)
  -c string
        Check hashsum file.
  -t string
        Target file/wildcard to generate hashsum list.
  -v    Verbose mode. (The exit code is always 0 in this mode)
  

Examples:

Generate hashsum list:

$ ./sha3sum -t "*.*" > hash.txt

Generate recursive hashsum list:

$ find . -type f -name "*.*" -exec ./sha3sum -t '{}' \; > hash.txt 
Always works in binary mode.

Check hashsum file:

$ ./sha3sum [-v] -c hash.txt
Exit code is always 0 in vebose mode.
Description
sha3sum Implementation in Go
Readme 77 KiB
Languages
Go 100%