Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Otsar raikou patch 2 1 #90

Merged
merged 5 commits into from
Oct 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/introfhe.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,17 @@
## Implementations

- [FPT: a Fixed-Point Accelerator for Torus Fully Homomorphic Encryption](https://eprint.kobi.one/2022/1635)
- [cuHE for GPU FHE](https://eprint.iacr.org/2015/818.pdf)
- [Open Source implementations](https://people.csail.mit.edu/vinodv/FHE/FHE-refs.html )

## Security


- [Security of FHE Schemes](https://www.zama.ai/post/estimating-the-security-of-homomorphic-schemes)
- [Lattice based attacks](https://blog.simons.berkeley.edu/2020/04/lattice-blog-reduction-part-i-bkz/)
- [On concrete hardness of LWE](https://eprint.iacr.org/2015/046.pdf)
- [Security of HE on AN](https://eprint.iacr.org/2020/1533.pdf)
- [On security of multivariate RLWE](https://msp.org/obs/2020/4/p05.xhtml)

## Survey papers

- [Survey on Fully Homomorphic Encryption, Theory, and Applications](https://eprint.iacr.org/2022/1602)
- [Relations between RLWE schemes](https://eprint.kobi.one/2018/758)

22 changes: 20 additions & 2 deletions src/mathfhe.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,28 @@

## **UNDER CONSTRUCTION** 👷

## Review Articles
[Lattice cryptography](https://eprint.iacr.org/2015/939.pdf)

## Discrete & Continuous Fourier Transform

### FFT

## Encryption Method

### LWE
- [On Lattices, Learning with Errors, Random Linear Codes, and Cryptography](https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.215.3543&rep=rep1&type=pdf)
- [The Learning with Errors Problem](https://cims.nyu.edu/~regev/papers/lwesurvey.pdf)
- [RLWE in polynomial rings](https://eprint.iacr.org/2012/235)
- [RLWE in any number field](https://eprint.iacr.org/2017/258)
- [Pseudorandomness of RLWE for any ring and modulus](https://eprint.iacr.org/2017/258)
- [GGSW](https://eprint.iacr.org/2013/340.pdf)

## Techniques

- [Bootstrapping](https://www.cs.cmu.edu/~odonnell/hits09/gentry-homomorphic-encryption.pdf)




### FFT

### NTT
18 changes: 17 additions & 1 deletion src/schemesfhe.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,32 @@

## **UNDER CONSTRUCTION** 👷

## BGV
## Public key encryption: HE
### [Paper]( https://people.csail.mit.edu/vinodv/6892-Fall2013/rothblum.pdf)

## BGV
### [Paper](https://eprint.iacr.org/2011/277.pdf)

## BFV
### [Paper]( https://eprint.iacr.org/2012/078.pdf)

## SWHE
### [Paper](https://eprint.iacr.org/2012/144.pdf )

## CKKS
### [Paper](https://eprint.iacr.org/2016/421.pdf)

## FHEW
### [Paper](https://eprint.iacr.org/2014/816.pdf)
- [Bootstrapping in FHEW like schemes](https://eprint.iacr.org/2020/086)

## TFHE
### [Paper](https://eprint.iacr.org/2018/421.pdf)
- [TFHE GLOT (GLEV)](https://eprint.iacr.org/2021/729.pdf)
- [Joye](https://tches.iacr.org/index.php/TCHES/article/view/9836/9339)
- [PBS and efficient Neural networks](https://eprint.iacr.org/2021/091.pdf)



- ### Deep dive: ZAMA AI - Ilaria Chilloti

Expand Down