An open API service indexing awesome lists of open source software.

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.

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
```