1.0 KiB
1.0 KiB
c-kzg [Work in Progress]
The very beginnings of a simple implementation of KZG commitments in C, using the Blst library from Supranational for field and curve operations.
Initially, at least, this largely follows the go-kzg implementation.
Done so far:
- Rough and ready FFT and inverse FFT over the finite field.
Installation
Build the Blst library following the instructions there. Then,
- Copy the resulting
libblst.a
file into thelib/
directory here. - From Blst's
bindings/
directory copyblst.h
andblst_aux.h
toinc/
That is,
mkdir lib
cp ../blst/libblast.a lib/
cp ../blst/bindings/*.h inc/
There's no library to make here yet, but you can run the tests.
Run tests
make test
Thanks to Acutest for the unit test harness, which is used here under the MIT licence.