tfhe 1.6.0

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
9
10
11
use crate::high_level_api::kv_store::CompressedKVStore;
use crate::FheIntegerType;
use tfhe_versionable::VersionsDispatch;

#[derive(VersionsDispatch)]
pub enum CompressedKVStoreVersions<Key, Value>
where
    Value: FheIntegerType,
{
    V0(CompressedKVStore<Key, Value>),
}