ckks-engine 4.0.0

ckks-engine is a Rust crate that provides an implementation of the CKKS (Cheon-Kim-Kim-Song) homomorphic encryption scheme. This enables encrypted computations on real numbers and strings while preserving the privacy of the underlying data. With ckks-engine, you can perform a wide range of mathematical operations on encrypted data, including addition, subtraction, multiplication, division, exponentiation, and more with some error accumulation in values due to the nature of approximate homomorphic encryption.
Documentation
// lib.rs

// Declare modules
pub mod ckks;
pub mod polynomial;
pub mod keygen;
pub mod utils;
pub mod arithmetic;
pub mod stringfn;

// Re-export key structs/functions from modules for easy access
pub use ckks::{CKKSEncryptor, CKKSDecryptor, CkksParameters};
pub use polynomial::Polynomial;
pub use keygen::{PublicKey, SecretKey, KeyGenerator};