tfhe 1.6.1

TFHE-rs is a fully homomorphic encryption (FHE) library that implements Zama's variant of TFHE.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use base::{FheBool, FheBoolConformanceParams};
pub use compressed::{CompressedFheBool, CompressedFheBoolConformanceParams};
pub use squashed_noise::SquashedNoiseFheBool;

pub(in crate::high_level_api) use compressed::InnerCompressedFheBool;
pub(in crate::high_level_api) use inner::{InnerBoolean, InnerBooleanVersionOwned};
pub(in crate::high_level_api) use squashed_noise::{
    InnerSquashedNoiseBoolean, InnerSquashedNoiseBooleanVersionOwned,
};

mod base;
mod compressed;
mod encrypt;
mod inner;
mod oprf;
mod squashed_noise;
#[cfg(test)]
mod tests;