zkboo 0.1.0

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

//! Implementation of the ZKBoo proof generation logic.

pub mod challenge;
mod functions;
pub mod proof;
pub mod views;

#[cfg(feature = "parallel")]
pub use functions::par_prove;
pub use functions::{prove, prove_custom};