drand-verify 0.3.0

A drand verification library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod points;
mod randomness;
mod verify;
#[cfg(feature = "js")]
mod verify_js;

pub use points::{
    g1_from_fixed, g1_from_fixed_unchecked, g1_from_variable, g1_from_variable_unchecked,
    g2_from_fixed, g2_from_fixed_unchecked, g2_from_variable, g2_from_variable_unchecked,
};
pub use randomness::derive_randomness;
pub use verify::{verify, verify_step1, verify_step2, VerificationError};