Files
poulpy/core/src/lib.rs
Jean-Philippe Bossuat 3084978976 Added basic GLWE ops
2025-05-22 16:08:44 +02:00

18 lines
339 B
Rust

pub mod automorphism;
pub mod elem;
pub mod gglwe_ciphertext;
pub mod ggsw_ciphertext;
pub mod glwe_ciphertext;
pub mod glwe_ciphertext_fourier;
pub mod glwe_ops;
pub mod glwe_plaintext;
pub mod keys;
pub mod keyswitch_key;
pub mod tensor_key;
#[cfg(test)]
mod test_fft64;
pub mod trace;
mod utils;
pub(crate) const SIX_SIGMA: f64 = 6.0;