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
//! Module with the definition of the encryption PublicKey.

pub mod compact;
pub mod compressed;
pub mod standard;

pub use compact::{CompactPrivateKey, CompactPublicKey, CompressedCompactPublicKey};
pub use compressed::CompressedPublicKey;
pub use standard::PublicKey;