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
pub mod ciphertext;
pub mod client_key;
pub mod ffi;
pub mod key_switching_key;
pub mod list_compression;
pub mod noise_squashing;
pub mod server_key;
#[cfg(feature = "zk-pok")]
pub mod zk;

pub use ffi::*;
pub use server_key::{
    CudaOprfServerKey, CudaOprfServerKeyView, CudaServerKey, GenericCudaOprfServerKey,
};