├── .github ├── dependabot.yml └── workflows │ ├── clang-format.yml │ ├── linux.yml │ └── windows.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── apply-clang-format.sh ├── libaxc.pc.cmake ├── src ├── axc.c ├── axc.h ├── axc_crypto.c ├── axc_crypto.h ├── axc_store.c ├── axc_store.h └── message_client.c └── test ├── test_client.c └── test_store.c /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/README.md -------------------------------------------------------------------------------- /apply-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/apply-clang-format.sh -------------------------------------------------------------------------------- /libaxc.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/libaxc.pc.cmake -------------------------------------------------------------------------------- /src/axc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/src/axc.c -------------------------------------------------------------------------------- /src/axc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/src/axc.h -------------------------------------------------------------------------------- /src/axc_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/src/axc_crypto.c -------------------------------------------------------------------------------- /src/axc_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/src/axc_crypto.h -------------------------------------------------------------------------------- /src/axc_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/src/axc_store.c -------------------------------------------------------------------------------- /src/axc_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/src/axc_store.h -------------------------------------------------------------------------------- /src/message_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/src/message_client.c -------------------------------------------------------------------------------- /test/test_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/test/test_client.c -------------------------------------------------------------------------------- /test/test_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gkdr/axc/HEAD/test/test_store.c --------------------------------------------------------------------------------