work on tensor, fix mul by constant(plaintext)

This commit is contained in:
2025-06-22 18:42:50 +02:00
parent d2fc32ac0c
commit 7740a3ef3e
4 changed files with 135 additions and 196 deletions

View File

@@ -1,4 +1,5 @@
# fhe-study
Code done while studying some FHE papers, with the idea of doing implementations from scratch.
Implementations from scratch done while studying some FHE papers.
- arithmetic: contains $\mathbb{Z}_q$ and $\mathbb{Z}_q[X]/(X^N+1)$ arithmetic implementations, together with the NTT implementation.
- arithmetic: contains $\mathbb{Z}_q$, $R_q=\mathbb{Z}_q[X]/(X^N+1)$ and $R=\mathbb{Z}[X]/(X^N+1)$ arithmetic implementations, together with the NTT implementation.
- bfv: https://eprint.iacr.org/2012/144.pdf scheme implementation