tfhe 1.7.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
12
13
use tfhe_versionable::VersionsDispatch;

use crate::transciphering::{StreamCipherKind, StreamCiphertext};

#[derive(VersionsDispatch)]
pub enum StreamCipherKindVersions {
    V0(StreamCipherKind),
}

#[derive(VersionsDispatch)]
pub enum StreamCiphertextVersions {
    V0(StreamCiphertext),
}