use std::collections::HashMap; use poulpy_core::layouts::{GLWEAutomorphismKeyCompressed, GLWETensorKeyCompressed}; use poulpy_hal::layouts::Data; use crate::tfhe::blind_rotation::{BlindRotationAlgo, BlindRotationKeyCompressed}; #[allow(dead_code)] pub struct CircuitBootstrappingKey { pub(crate) brk: BlindRotationKeyCompressed, pub(crate) tsk: GLWETensorKeyCompressed>, pub(crate) atk: HashMap>>, }