Compress, encrypt, and split files into pieces. Then stitch them together again.
# Building
make
# Testing
make test
# View documentation
make docOnce you've executed make doc, you can view the documentation with your
browser at http://localhost:6060/pkg/github.com/OhanaFS/stitch/
Currently there is a basic CLI for the pipeline encoder:
go run ./cmd/stitch pipeline --helpTo encode files, use the -input flag:
go run ./cmd/stitch pipeline -input file.binThe command will create file.bin.shardX files in the same directory. To
decode, use the -output flag:
go run ./cmd/stitch pipeline -output file.binThe command will look for file.bin.shardX files and use it to reconstruct
file.bin.
