A C library for cryptographic operations.
mkdir build
cd build
cmake ..
makemakecd build
sudo make installsudo make installInclude the library in your project:
#include <cecrypto/cecrypto.h>
int main(void) {
cecrypto_init();
// Use library functions here
cecrypto_cleanup();
return 0;
}Compile your program:
# Using pkg-config
gcc myprogram.c $(pkg-config --cflags --libs cecrypto) -o myprogram
# Or manually
gcc myprogram.c -I/usr/local/include -L/usr/local/lib -lcecrypto -o myprogramcd build
make testcd build
./examples/example_basicSee docs/API.md for detailed API documentation.
KYBER - MIT Licence - https://github.com/GiacomoPope/kyber-py - (Converted from python)
[Add contribution guidelines here]