├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cipher.go ├── config.go ├── doc.go ├── encoding.go ├── example_test.go ├── go.mod ├── go.sum ├── stream.go └── stream_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.13 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/README.md -------------------------------------------------------------------------------- /cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/cipher.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/config.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/doc.go -------------------------------------------------------------------------------- /encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/encoding.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/go.sum -------------------------------------------------------------------------------- /stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/stream.go -------------------------------------------------------------------------------- /stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nknorg/encrypted-stream/HEAD/stream_test.go --------------------------------------------------------------------------------