├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── chacha20poly1305.go ├── chacha20poly1305_test.go └── shootout_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/chacha20poly1305/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/chacha20poly1305/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/chacha20poly1305/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/chacha20poly1305/HEAD/README.md -------------------------------------------------------------------------------- /chacha20poly1305.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/chacha20poly1305/HEAD/chacha20poly1305.go -------------------------------------------------------------------------------- /chacha20poly1305_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/chacha20poly1305/HEAD/chacha20poly1305_test.go -------------------------------------------------------------------------------- /shootout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codahale/chacha20poly1305/HEAD/shootout_test.go --------------------------------------------------------------------------------