concordium_base 10.0.0-alpha.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
//! Implementation of Pedersen commitments over an arbitrary curve.
mod commitment;
mod errors;
mod key;
mod randomness;
mod value;

pub use self::{commitment::*, key::*, randomness::*, value::*};