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
9
10
11
12
13
//! An implementation of the Pointcheval-Sanders signature scheme <https://eprint.iacr.org/2015/525>
mod errors;
mod known_message;
mod public;
mod secret;
mod signature;
mod unknown_message;

pub use known_message::*;
pub use public::*;
pub use secret::*;
pub use signature::*;
pub use unknown_message::*;