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
//! Bootstrapping keys.
//!
//! The bootstrapping operation allows to reduce the level of noise in an LWE ciphertext, while
//! evaluating an univariate function.

mod seeded_standard;
mod standard;

pub use seeded_standard::StandardSeededBootstrapKey;
pub use standard::StandardBootstrapKey;

#[cfg(test)]
mod tests;