export blind rotation

This commit is contained in:
Jean-Philippe Bossuat
2025-07-08 17:00:42 +02:00
parent 2e0e7e11b4
commit 0e65df9795
4 changed files with 9 additions and 4 deletions

View File

@@ -1,7 +1,10 @@
// pub mod cggi;
pub mod ccgi;
pub mod cggi;
pub mod key;
pub mod lut;
pub use cggi::{cggi_blind_rotate, cggi_blind_rotate_scratch_space};
pub use key::BlindRotationKeyCGGI;
pub use lut::LookUpTable;
#[cfg(test)]
pub mod test_fft64;

View File

@@ -4,7 +4,7 @@ use sampling::source::Source;
use crate::{
FourierGLWESecret, GLWECiphertext, GLWEPlaintext, GLWESecret, Infos, LWECiphertext, LWESecret,
blind_rotation::{
ccgi::{cggi_blind_rotate, cggi_blind_rotate_scratch_space, negate_and_mod_switch_2n},
cggi::{cggi_blind_rotate, cggi_blind_rotate_scratch_space, negate_and_mod_switch_2n},
key::BlindRotationKeyCGGI,
lut::LookUpTable,
},