tfhe 1.6.1

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
use tfhe_versionable::VersionsDispatch;

use crate::core_crypto::prelude::{Cleartext, Numeric};

#[derive(VersionsDispatch)]
pub enum CleartextVersions<T: Numeric> {
    V0(Cleartext<T>),
}