fhe_math/
lib.rs

1#![crate_name = "fhe_math"]
2#![crate_type = "lib"]
3#![warn(missing_docs, unused_imports)]
4
5//! Mathematical utilities for the fhe.rs library.
6
7mod errors;
8mod proto;
9
10pub mod ntt;
11pub mod rns;
12pub mod rq;
13pub mod zq;
14
15pub use errors::{Error, Result};
16
17#[cfg(test)]
18#[macro_use]
19extern crate proptest;