zkboo 0.1.0

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

//! Implementation of the ZKBoo challenge generation logic.

mod builder;
mod challenge;
mod functions;

pub use builder::ChallengeBuilder;
pub use challenge::{ChallengeGenerator, Party, PartyVec};
pub use functions::build_challenge_entropy;
#[cfg(feature = "rayon")]
pub use functions::par_build_challenge_entropy;