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
pub mod ciphertext;
pub mod client_key;
pub mod server_key;

mod backward_compatibility;
mod char_iter;
#[cfg(test)]
mod test_functions;

// Used as the const argument for StaticUnsignedBigInt, specifying the max chars length of a
// ClearString
const N: usize = 32;

pub use client_key::ClientKey;
pub use server_key::{ServerKey, ServerKeyRef};