├── .gitignore ├── LICENSE ├── README.md └── src ├── Makefile ├── test └── test_xchacha20.c └── xchacha20 ├── crypto_aead_det_xchacha20.c └── crypto_aead_det_xchacha20.h /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | src/test_xchacha20 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/libsodium-xchacha20-siv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/libsodium-xchacha20-siv/HEAD/README.md -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/libsodium-xchacha20-siv/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/test/test_xchacha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/libsodium-xchacha20-siv/HEAD/src/test/test_xchacha20.c -------------------------------------------------------------------------------- /src/xchacha20/crypto_aead_det_xchacha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/libsodium-xchacha20-siv/HEAD/src/xchacha20/crypto_aead_det_xchacha20.c -------------------------------------------------------------------------------- /src/xchacha20/crypto_aead_det_xchacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedisct1/libsodium-xchacha20-siv/HEAD/src/xchacha20/crypto_aead_det_xchacha20.h --------------------------------------------------------------------------------