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
//! Module containing common traits used throughout the [`core_crypto
//! module`](`crate::core_crypto`).

pub mod container;
pub mod contiguous_entity_container;
pub mod create_from;
pub mod encryptable;

pub use container::*;
pub use contiguous_entity_container::*;
pub use create_from::*;
pub use encryptable::*;

// Convenience re-exports
pub use super::math::random::{ByteRandomGenerator, ParallelByteRandomGenerator, Seeder};
pub use super::math::torus::UnsignedTorus;
pub use super::numeric::*;