├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── example └── chacha20_example.c ├── src ├── chacha20.c └── chacha20.h └── test ├── chacha20_test.c └── minunit.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/README.md -------------------------------------------------------------------------------- /example/chacha20_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/example/chacha20_example.c -------------------------------------------------------------------------------- /src/chacha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/src/chacha20.c -------------------------------------------------------------------------------- /src/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/src/chacha20.h -------------------------------------------------------------------------------- /test/chacha20_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/test/chacha20_test.c -------------------------------------------------------------------------------- /test/minunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiffthq/chacha20/HEAD/test/minunit.h --------------------------------------------------------------------------------