Skip to main content

oxilean_std/zero_knowledge_proofs/
mod.rs

1//! Zero-knowledge proofs module.
2//!
3//! Provides ZK proof systems: Pedersen commitments, Schnorr-like discrete-log
4//! proofs (Sigma protocols), and bit-decomposition range proofs over small toy
5//! prime fields.
6
7pub mod functions;
8pub mod types;
9
10pub use functions::*;
11pub use types::*;