dilithium/lib.rs
1extern crate core;
2
3#[macro_use] extern crate arrayref;
4extern crate rand;
5extern crate byteorder;
6extern crate itertools;
7extern crate digest;
8extern crate sha3;
9
10#[macro_use] mod utils;
11mod reduce;
12mod rounding;
13mod ntt;
14mod poly;
15mod polyvec;
16mod packing;
17pub mod params;
18pub mod sign;
19
20#[cfg(test)] mod test_mul;
21#[cfg(test)] mod test_vectors;