reverie-zk 0.3.2

An efficient implementation of the NIZKPoK outlined in KKW 2018
Documentation
mod batch;
mod share;

use std::marker::PhantomData;
use std::mem::MaybeUninit;

pub use batch::BatchGen;
pub use share::ShareGen;

use crate::algebra::{Batch, Domain};
use crate::crypto::prg::{Key, PRG};
use crate::{BATCH_SIZE, PACKED, PLAYERS};