You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
544 B

#![allow(non_snake_case)]
#![feature(test)]
extern crate byteorder;
extern crate core;
extern crate curve25519_dalek;
extern crate digest;
extern crate merlin;
extern crate rand;
extern crate rayon;
extern crate sha3;
extern crate test;
mod bullet;
pub mod commitments;
pub mod dense_mlpoly;
mod errors;
mod group;
pub mod math;
pub mod nizk;
mod product_tree;
pub mod r1csinstance;
pub mod r1csproof;
pub mod scalar;
mod scalar_25519;
pub mod sparse_mlpoly;
pub mod spartan;
pub mod sumcheck;
pub mod timer;
pub mod transcript;
mod unipoly;