1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
extern crate core;

#[macro_use] extern crate arrayref;
extern crate rand;
extern crate byteorder;
extern crate itertools;
extern crate digest;
extern crate sha3;

#[macro_use] mod utils;
mod reduce;
mod rounding;
mod ntt;
mod poly;
mod polyvec;
mod packing;
pub mod params;
pub mod sign;

#[cfg(test)] mod test_mul;
#[cfg(test)] mod test_vectors;