concordium_base 10.0.0

A library that defines common types and functionality that are needed by Concordium Rust projects.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Implementation of bulletproofs in the scope needed by Concordium.
//!
//! In particular this means
//!  * range proofs for 64-bit unsigned integers.
//!  * set membership proofs for scalars of curve `C`.
pub mod inner_product_proof;
pub mod range_proof;
pub mod set_membership_proof;
pub mod set_non_membership_proof;
pub mod utils;