rs_tfhe 0.1.1

A high-performance Rust implementation of TFHE (Torus Fully Homomorphic Encryption) with advanced programmable bootstrapping capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod bit_utils;
pub mod bootstrap;
pub mod fft;
pub mod gates;
pub mod key;

#[cfg(feature = "lut-bootstrap")]
pub mod lut;

pub mod parallel;
pub mod params;
pub mod tlwe;
pub mod trgsw;
pub mod trlwe;
pub mod utils;