tfhe 1.8.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
use crate::shortint::parameters::{OprfParameters, TranscipheringParameters};
use crate::shortint::prelude::LweDimension;

pub const V1_8_TRANSCIPHERING_PARAM_DEDICATED_OPRF: TranscipheringParameters =
    TranscipheringParameters::DedicatedOprf(OprfParameters {
        lwe_dimension: LweDimension(600),
    });