5c1128e380
* Start to add profiling * Add include flags for macos * Add profiling funcs for the other funcs * Add profiling readme * Move sentence * Add warning section * Make run_profiler phony * Delete extra empty lines * Add line about box size * No more dropped nodes/edges * Remove function focus * Add sha256 benchmark * Benchmark sha256 with different sizes * Clean things up a little |
||
---|---|---|
.github/workflows | ||
bindings | ||
blst@ca03e11a3f | ||
inc | ||
lib | ||
src | ||
.gitignore | ||
.gitmodules | ||
LICENSE | ||
README.md | ||
go.mod | ||
go.sum |
README.md
C-KZG-4844: A minimal library for EIP-4844 Polynomial Commitments
This is a copy of C-KZG stripped-down to support the Polynomial Commitments API:
blob_to_kzg_commitment
compute_kzg_proof
compute_aggregate_kzg_proof
verify_kzg_proof
verify_aggregate_kzg_proof
We also provide functions for loading/freeing the trusted setup:
load_trusted_setup
load_trusted_setup_file
free_trusted_setup
Installation
Initialize the blst submodule:
git submodule update --init
Build blst:
cd src
make blst
Build the C-KZG code:
cd src
make