concrete-core 1.0.2

Concrete is a fully homomorphic encryption (FHE) library that implements Zama's variant of TFHE.
Documentation
//! Encoding cleartexts into plaintexts

#[cfg(test)]
mod tests;

mod encoder;
pub use encoder::*;

mod cleartext;
pub use cleartext::*;

mod plaintext;
pub use plaintext::*;