vdf-classgroup 0.2.0

Class groups in Rust using GMP for arithmetic (maintained fork for vdf-rs)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(deprecated)]
#![allow(non_camel_case_types)]

extern crate libc;
extern crate num_traits;

mod ffi;
pub mod mpz;
pub mod sign;

#[cfg(test)]
mod test;