Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedroalbanese/sha3sum
sha3sum Implementation in Go
https://github.com/pedroalbanese/sha3sum
golang-tools keccak sha3 sha3-224 sha3-256 sha3-384 sha3-512 sha3sum
Last synced: 13 days ago
JSON representation
sha3sum Implementation in Go
- Host: GitHub
- URL: https://github.com/pedroalbanese/sha3sum
- Owner: pedroalbanese
- License: isc
- Created: 2021-04-05T22:26:21.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-04T17:24:17.000Z (over 2 years ago)
- Last Synced: 2024-11-09T15:12:07.400Z (2 months ago)
- Topics: golang-tools, keccak, sha3, sha3-224, sha3-256, sha3-384, sha3-512, sha3sum
- Language: Go
- Homepage:
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# SHA3SUM(2)
[![ISC License](http://img.shields.io/badge/license-ISC-blue.svg)](https://github.com/pedroalbanese/sha3sum/blob/master/LICENSE.md)
[![GoDoc](https://godoc.org/github.com/pedroalbanese/sha3sum?status.png)](http://godoc.org/github.com/pedroalbanese/sha3sum)
[![GitHub downloads](https://img.shields.io/github/downloads/pedroalbanese/sha3sum/total.svg?logo=github&logoColor=white)](https://github.com/pedroalbanese/sha3sum/releases)
[![Go Report Card](https://goreportcard.com/badge/github.com/pedroalbanese/sha3sum)](https://goreportcard.com/report/github.com/pedroalbanese/sha3sum)
[![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/pedroalbanese/sha3sum)](https://golang.org)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/pedroalbanese/sha3sum)](https://github.com/pedroalbanese/sha3sum/releases)
### sha3sum Parallel Implementation written in GoUsage of sha3sum:
sha3sum [-c <hash.ext>] [-b N] [-r] <file.ext>
-b int
Bits: 224, 256, 384 and 512. (default 256)
-c string
Check hashsum file.
-r Process directories recursively.
### Examples:#### Generate hashsum list:
$ ./sha3sum [-r] "*.*" > hash.txt
##### Always works in binary mode.#### Check hashsum file:
$ ./sha3sum -c hash.txt
$ echo $?## License
This project is licensed under the ISC License.
##### Copyright (c) 2020-2022 Pedro F. Albanese - ALBANESE Research Lab.