mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 13:16:44 +01:00
* Added compressed serialization for GLWECiphertext + Ciphertext decompression * Added compressed serialization for GGLWECiphertext & GLWESwitchingkey * generalized automorphism test * Removed ops on scalar_znx, replaced by as_vec_znx/as_vec_znx_mut and then call op on vec_znx * Added tests for automorphism key encryption * Added tensorkey compressed * added ggsw compressed
19 lines
295 B
Rust
19 lines
295 B
Rust
mod automorphism;
|
|
mod encryption;
|
|
mod external_product;
|
|
mod keyswitch;
|
|
mod layout;
|
|
mod layout_compressed;
|
|
mod layout_exec;
|
|
mod noise;
|
|
|
|
pub use encryption::*;
|
|
pub use keyswitch::*;
|
|
pub use layout::*;
|
|
pub use layout_compressed::*;
|
|
pub use layout_exec::*;
|
|
pub use noise::*;
|
|
|
|
#[cfg(test)]
|
|
mod test;
|