zkboo 0.1.0

An implementation of the ZKBoo protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: LGPL-3.0-or-later

//! Proof building logic for the ZKBoo prover.

mod builder;
pub mod collectors;
mod functions;
mod response;

pub use builder::ProofBuilder;
#[cfg(feature = "rayon")]
pub use functions::par_build_proof;
pub use functions::{build_proof, build_proof_custom};
pub use response::{Proof, Response};