concrete-core 1.0.2

Concrete 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
//! A module containing various backends implementing the `concrete` FHE scheme.

#[cfg(feature = "backend_default")]
pub mod default;

#[cfg(feature = "backend_fft")]
pub mod fft;

#[cfg(feature = "backend_cuda")]
pub mod cuda;

#[cfg(feature = "backend_ntt")]
pub mod ntt;