https://github.com/cwlbraa/verifysfv
a tiny, fast, almost-always-io-bound tool for verifying SFV files.
https://github.com/cwlbraa/verifysfv
cli crc crc32 sfv sfv-files tiny verify
Last synced: 7 months ago
JSON representation
a tiny, fast, almost-always-io-bound tool for verifying SFV files.
- Host: GitHub
- URL: https://github.com/cwlbraa/verifysfv
- Owner: cwlbraa
- License: mit
- Created: 2017-06-30T01:22:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-06T17:55:39.000Z (over 8 years ago)
- Last Synced: 2025-03-06T00:31:33.439Z (7 months ago)
- Topics: cli, crc, crc32, sfv, sfv-files, tiny, verify
- Language: Go
- Homepage:
- Size: 4.3 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License.md
Awesome Lists containing this project
README
# verifysfv
a tiny, fast, almost-always-io-bound tool for verifying
[SFV files](https://en.wikipedia.org/wiki/Simple_file_verification).
Written in [Go](http://golang.org) and adapted from @mpolden's [sfv package](https://github.com/mpolden/sfv)
to verify any of Golang's supported crc32c polynomials (crc32c, IEEE, or Koopman) in parallel.
All deps are vendored, so this should build outside of a $GOPATH for any go>=1.7.## Installation
`go install github.com/cwlbraa/verifysfv`
## Example
```shell
# to verify a crc32c.sfv file:
verifysfv fileManifest.sfv
# for more options:
verifysfv -h
```