6 releases (3 breaking)

0.10.0 Oct 27, 2025
0.9.1 Sep 24, 2025
0.8.1 Aug 30, 2025
0.8.0 Jul 22, 2025
0.7.1 Jun 2, 2025

#556 in Algorithms

Download history 3584/week @ 2025-10-20 2959/week @ 2025-10-27 3185/week @ 2025-11-03 2115/week @ 2025-11-10 1307/week @ 2025-11-17 2413/week @ 2025-11-24 2737/week @ 2025-12-01 1931/week @ 2025-12-08 2492/week @ 2025-12-15 735/week @ 2025-12-22 846/week @ 2025-12-29 2129/week @ 2026-01-05 2310/week @ 2026-01-12 2560/week @ 2026-01-19 3051/week @ 2026-01-26 3355/week @ 2026-02-02

11,471 downloads per month
Used in rust_eth_kzg

MIT license

235KB
3.5K SLoC

KZG Multi Open

Overview

This crate provides a Rust API for KZG multi-opening polynomial commitment scheme (PCS).This allows you to commit to a polynomial over some field with prime order, and later on reveal multiple evaluations of that polynomial, along with an (opening) proof that attests to the correctness of those evaluations.

The opening proofs are efficiently computed using FK20.

The API is opinionated and although it is generic, it also does not support every use case. It has been made with the Ethereum Data Availability Sampling vision in mind. One can see that for example, we allow evaluations over particular cosets, where the order of the elements in each coset and the order of the cosets themselves are fixed. (Even though we test internally with permutations of the cosets)

Installation

Installation of this crate can be done by adding this to your Cargo.toml:

[dependencies]
ekzg-multi-open = "0.1.0"

Dependencies

~4–7MB
~188K SLoC