wiki pages

Signed-off-by: Kamal Tufekcic <kamal@lo.sh>
This commit is contained in:
Kamal Tufekcic 2026-04-02 23:52:36 +03:00
commit 79e3ced612
No known key found for this signature in database
165841 changed files with 7971 additions and 74473 deletions

35
C-API.md Normal file
View file

@ -0,0 +1,35 @@
# libsoliton_capi
C ABI FFI layer for [libsoliton](https://git.lo.sh/lo/libsoliton) — a pure-Rust post-quantum cryptographic library.
## API
The complete API is defined in [`soliton.h`](soliton.h) (48 exported functions, cbindgen-generated). All functions return `int32_t` error codes; opaque handles are created/freed via matched `_new`/`_free` pairs.
## Build
```bash
cargo build --release -p libsoliton_capi
```
Produces:
- `target/release/libsoliton_capi.so` (Linux) / `.dylib` (macOS) / `.dll` (Windows)
- `target/release/libsoliton_capi.a` (static)
## Link
**pkg-config:**
```bash
gcc main.c $(pkg-config --cflags --libs libsoliton) -o main
```
**CMake:**
```cmake
find_package(Soliton REQUIRED)
target_link_libraries(myapp Soliton::Soliton)
```
**Direct:**
```bash
gcc main.c -I path/to/soliton_capi -L path/to/target/release -lsoliton_capi -o main
```