Updated packing to clean values correctly

This commit is contained in:
Pro7ech
2025-10-30 15:58:30 +01:00
parent a6970669dd
commit 3cd79e5a90
19 changed files with 127 additions and 93 deletions

View File

@@ -15,7 +15,7 @@ use crate::{
},
};
pub fn test_glwe_packing<BE: Backend>(module: &Module<BE>)
pub fn test_glwe_packer<BE: Backend>(module: &Module<BE>)
where
Module<BE>: GLWEEncryptSk<BE>
+ GLWEAutomorphismKeyEncryptSk<BE>

View File

@@ -4,9 +4,9 @@ pub mod external_product;
pub mod keyswitch;
mod conversion;
mod packing;
mod glwe_packer;
mod trace;
pub use conversion::*;
pub use packing::*;
pub use glwe_packer::*;
pub use trace::*;