tfhe 1.6.0

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
pub mod atomic_pattern;
mod compressed_server_key;
mod private_key;
mod server_key;
#[cfg(test)]
pub mod tests;

pub use compressed_server_key::{
    CompressedNoiseSquashingKey, CompressedShortint128BootstrappingKey,
};
pub use private_key::NoiseSquashingPrivateKey;
pub(crate) use private_key::NoiseSquashingPrivateKeyView;
pub use server_key::{
    ExpandedNoiseSquashingKey, GenericNoiseSquashingKey, NoiseSquashingKey,
    NoiseSquashingKeyConformanceParams, NoiseSquashingKeyView, Shortint128BootstrappingKey,
    StandardNoiseSquashingKey, StandardNoiseSquashingKeyView,
};