Reorganized other crates

This commit is contained in:
Jean-Philippe Bossuat
2025-06-13 18:57:28 +02:00
parent 4d4b43a4e5
commit e8cfb5e2ab
52 changed files with 2787 additions and 1380 deletions

View File

@@ -0,0 +1,12 @@
pub mod ciphertext;
pub mod decryption;
pub mod encryption;
pub mod external_product;
pub mod keyswitch;
pub mod secret;
pub use ciphertext::FourierGLWECiphertext;
pub use secret::FourierGLWESecret;
#[cfg(test)]
pub mod test_fft64;