Crate kimchi_stubs
source ·Expand description
The Marlin_plonk_stubs crate exports some functionalities and structures from the following the Rust crates to OCaml:
- Proof-systems, a PLONK implementation.
- Arkworks, a math library that Proof-systems builds on top of.
Re-exports
pub use lagrange_basis::WithLagrangeBasis;
Modules
- Arkworks types This module contains wrapper types to Arkworks types. To use Arkwork types in OCaml, you have to convert to these types, and convert back from them to use them in Rust.
- Caml helpers
- Vectors We implement a custom type for field vectors in order to quickly build field vectors from the OCaml side and avoid large vector clones.
- A GateVector: this is used to represent a list of gates.
- Linearization helpers
- Oracles
- Indexes
- Proofs
- Poseidon
- Verifier indexes/keys
- Curves
- SRS
- Utils
Structs
- Handy re-exports
- Handy re-exports
- Handy re-exports
- Handy re-exports
- Handy re-exports
- Handy re-exports
- Handy re-exports
- Handy re-exports
- Handy re-exports
- Handy re-exports
- Handy re-exports
Enums
- Handy re-exports A row accessible from a given row, corresponds to the fact that we open all polynomials at
zeta
andomega * zeta
. - Handy re-exports The different types of gates the system supports. Note that all the gates are mutually exclusive: they cannot be used at the same time on single row. If we were ever to support this feature, we would have to make sure not to re-use powers of alpha across constraints.