implement CKKS encoder & decoder

This commit is contained in:
2025-07-04 19:48:17 +02:00
parent 267422a3b5
commit a8117140fc
6 changed files with 218 additions and 5 deletions

12
ckks/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "ckks"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = { workspace = true }
rand = { workspace = true }
rand_distr = { workspace = true }
itertools = { workspace = true }
arith = { path="../arith" }