threshold-bls 0.2.2

Threshold BLS signature scheme implementation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod blind;
pub use blind::{BlindError, Token};

mod bls;
pub use bls::{BLSError, G1Scheme, G2Scheme};

mod tblind;
pub use tblind::BlindThresholdError;

mod tbls;
pub use tbls::{Share, ThresholdError};

#[allow(clippy::module_inception)]
mod sig;
pub use sig::*;