https://github.com/SNUCP/MKTFHE
Implementation of Multi-Key TFHE [KMS22]
https://github.com/SNUCP/MKTFHE
cryptography homomorphic-encryption mkhe multi-key-homomorphic-encryption tfhe
Last synced: 2 months ago
JSON representation
Implementation of Multi-Key TFHE [KMS22]
- Host: GitHub
- URL: https://github.com/SNUCP/MKTFHE
- Owner: SNUCP
- Created: 2022-10-12T05:38:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-24T14:25:15.000Z (over 2 years ago)
- Last Synced: 2026-02-22T00:31:37.986Z (4 months ago)
- Topics: cryptography, homomorphic-encryption, mkhe, multi-key-homomorphic-encryption, tfhe
- Language: Julia
- Homepage:
- Size: 754 KB
- Stars: 18
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-julia-security - MKTFHE - Implementation of Multi-Key Threshold Fully Homomorphic Encryption. (Cryptography / Post-Quantum Cryptography)
README
# MKTFHE
This implementation is a proof-of-concept for new multi-key TFHE scheme (https://eprint.iacr.org/2022/1460).
For the sake of performance, Float64 is used instead of multi precision floating number when multiplying polynomials with 64 bit coefficients, but the option can be manually turned on when defining the parameters.
Before you run the code, please make sure to install the following packages : ChaChaCiphers, MultiFloats.
To install them, you can open the REPL and type the following commands.
]
add ChaChaCiphers
add MultiFloats
To run the test code for CCS, type the following commands in the terminal.
julia ./test/CCS.jl
To run the test code for our MK-TFHE scheme, type the following commands in the terminal.
julia ./test/KMS.jl
To run the test code for the parallelized version of our MK-TFHE scheme, type the following commands in the terminal.
julia --threads=auto ./test/KMS.jl
This code also provides the implementation of CGGI scheme and LMSS(Faster TFHE bootstrapping from Block Binary Distribution) scheme.