(TFHE): add TLWE encryption & decryption

This commit is contained in:
2025-07-22 14:59:56 +00:00
parent d60eb1dff1
commit 0ca73ac505
12 changed files with 274 additions and 100 deletions

12
tfhe/Cargo.toml Normal file
View File

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