├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile.am ├── README.md ├── configure.ac ├── examples ├── Makefile.am └── example1.c ├── src ├── Makefile.am ├── shick_crypto.c └── shick_crypto.h └── tests ├── Makefile.am ├── acceptancetests.c ├── gcov └── unittests.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/configure.ac -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/examples/example1.c -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/shick_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/src/shick_crypto.c -------------------------------------------------------------------------------- /src/shick_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/src/shick_crypto.h -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/acceptancetests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/tests/acceptancetests.c -------------------------------------------------------------------------------- /tests/gcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/tests/gcov -------------------------------------------------------------------------------- /tests/unittests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaspustina/shick_crypto/HEAD/tests/unittests.c --------------------------------------------------------------------------------