poulpy_core/lib.rs
1mod automorphism;
2mod conversion;
3mod decryption;
4mod dist;
5mod encryption;
6mod external_product;
7mod glwe_packing;
8mod glwe_trace;
9mod keyswitching;
10mod noise;
11mod operations;
12mod scratch;
13mod utils;
14
15pub use operations::*;
16pub mod layouts;
17pub use dist::*;
18pub use glwe_packing::*;
19
20pub use scratch::*;
21
22pub(crate) const SIX_SIGMA: f64 = 6.0;
23
24pub mod tests;