sigma-protocols 0.5.1

SIGMA zero-knowledge proof protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Protocol implementations for specific zero-knowledge proofs.
//!
//! This module contains implementations of various SIGMA protocols:
//! - Schnorr: Proof of knowledge of discrete logarithm
//! - DLEQ: Proof of discrete logarithm equality
//! - Pedersen: Proof of knowledge of Pedersen commitment opening

pub mod dleq;
pub mod pedersen;
pub mod schnorr;

pub use dleq::DLEQProof;
pub use pedersen::PedersenProof;
pub use schnorr::SchnorrProof;