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
#![allow(clippy::missing_safety_doc)]
#[cfg(feature = "boolean-c-api")]
pub mod boolean;
pub mod buffer;
pub mod core_crypto;
pub mod error;
#[cfg(feature = "high-level-c-api")]
pub mod high_level_api;
#[cfg(feature = "shortint-c-api")]
pub mod shortint;
pub(crate) mod utils;