An open API service indexing awesome lists of open source software.

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]

Awesome Lists containing this project

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.