ark_bulletproofs/lib.rs
1#![cfg_attr(not(feature = "std"), no_std)]
2
3pub mod curve;
4
5mod util;
6
7mod errors;
8mod generators;
9mod inner_product_proof;
10mod transcript;
11
12pub use crate::errors::ProofError;
13pub use crate::generators::{BulletproofGens, BulletproofGensShare, PedersenGens};
14
15#[cfg(feature = "yoloproofs")]
16pub mod r1cs;