This project was developed as my Master final year project at Imperial College London.
It is an API of homomorphic binary operations such as binary comparisons or binary divisions using the library HElib.
The core API is in the file he.cpp, the main code is in main.cpp, some other classes are in helper_functions.cpp and the rest are unit tests and timing tests for the homomorphic binary operations implemented. There is a makefile to setup everything. My report is there to server as documentation for instance.
By default, it runs a set of unit tests on all the circuits implemented (initiated from main.cpp). You can change the tests, or main.cpp or whatever and it should still work.
In all scenarios, you will need the module make and to run as root or administrator.
- You will need several libraries.
- Use the Makefile following the instructions in the Makefile section. THIS is not compatible with all OS
- OR do it manually following the instructions in the Manual Setup section.
- You have to compile the project.
- Use the Makefile with
make project
, this should work for all platforms. - OR do it manually following the instructions in the Manual Setup section.
- Use the Makefile with
This is only compatible with Cygwin 32bit and Debian-based Linux.
CYGWIN note: Due to permission restrictions on Windows, install git and gcc-g++ manually with the Cygwin installer.
When the makefile is launched, note that the following modules will be installed if not present:
- apt-cyg (Cygwin 32bit only)
- git (Linux)
- gcc-g++ (Linux)
- curl
- m4
- perl
To install the project the first time:
- Move the makefile to an empty directory with
cd ..; mkdir -p new_dir; cd new_dir
- To download, compile and install HElib and other libraries:
make HElib
- You can try
make help
for more information
- For Mac OSX, to simplify the task, you can install Brew with:
- Install Xcode manually or with
xcode-select --install
- Install brew with
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Install Xcode manually or with
- Install the modules with
apt install curl git g++ m4 perl
orbrew install curl git g++ m4 perl
. - Install gmp:
- Download it with
curl https://gmplib.org/download/gmp/gmp-6.1.0.tar.bz2 > gmp.tar.bz2
- Extract it
tar xjf gmp.tar.bz2
- Go to it directory
cd gmp-6.1.0
- Configure it
./configure
- Make it
make
- Install it
make install
- Optionally, check it
make check
- For Cygwin 32bit,
cp -f /usr/local/lib/libgmp.* /usr/XXXXX-pc-cygwin/lib/
where XXXXX is your CPU architecture. - Go back to the main directory
cd ..
- Download it with
- Install NTL:
- Download it with
curl http://www.shoup.net/ntl/ntl-9.9.1.tar.gz > ntl.tar.gz
- Extract it
tar xf ntl.tar.gz
- Go to its source directory
cd ntl-9.9.1/src
- Configure it
./configure NTL_GMP_LIP=on
- Make it
make
- Install it
make install
- Go back to main directory
cd ../..
- Download it with
- Install HElib
- Clone it with
git clone https://github.com/shaih/HElib.git
- For Cygwin 32bit, do
sed -i -- 's/_B/_B_/g' HElib/src/Test_Replicate.cpp
or there will be a compile error. - Go to its source directory
cd HElib/src
- Make it
make
- Check it
make check
- Optionally test it
make test
- Go back to the main directory
cd ../..
- Clone it with
This is compatible will all platforms.
The final executable file is HEapp in the root directory which can be run with ./HEapp
.
- To download, compile and run the project code:
make project
- To re-compile the project source directory with your modifications:
make HE
- You can try
make help
for more information NOTE: The project source code is now in the ./source directory, and the GitHub repository is in ./hbc_git.
- Download this project with
git clone https://github.com/qdm12/hbc.git ./hbc_git
- Create a source folder
mkdir -p source
at the root (where you should be) - Copy the source files
cp ./hbc_git/* ./source
- Create an objects folder
mkdir -p objects
- Compile the API
g++ -c source/he.cpp -I HElib/src -o objects/he.o
- Compile the helper functions
g++ -c source/helper_functions.cpp -o objects/helper_functions.o
- Compile the various tests
g++ -c source/TEST_GATES.cpp -I HElib/src -o objects/test_gates.o
g++ -c source/TEST_CIRC_COMB.cpp -I HElib/src -o objects/test_circ_comb.o
g++ -c source/TEST_CIRC_SEQ.cpp -I HElib/src -o objects/test_circ_seq.o
g++ -c source/TEST_CIRC_ARITHM.cpp -I HElib/src -o objects/test_circ_arithm.o
- Compile the main.cpp source file
g++ -c source/main.cpp -I HElib/src -o objects/main.o
- Compile the objects into HEapp
g++ objects/*.o HElib/src/fhe.a -o HEapp -L/usr/local/lib -lntl -lgmp -lm
- Run the program with
./HEapp
& Enjoy ! Please refer to my long but complete report on this project, available in the repository. You're welcome to contribute to this repository if you find any better circuits or other circuits and implement them !
With the makefile you can run make clean
which simply removes .o and .exe files as well as HEapp.
You can also run make deepclean
which will uninstall from your system and delete:
- The project
- HElib
- NTL
- GMP
- Curl, perl, m4, git, gcc-g++ and libboost (libboost-devel, libboost-all-dev, libboost-dev) and purge them. Only the makefile will remain in the folder.
This project concerns the research and development of a real-use application of homomorphic encryption for cloud computing. The application takes advantage of the various possibilities and limitations of present homomorphic encryption schemes and programming libraries to remain usable in terms of time. The foundations of the application rely on the design of binary operations using homomorphic encryption. All the binary logic gates and various binary blocks were developed and adapted to provide enough functionalities to the application. The project focuses on providing features to cloud computing such as calculating averages on large amounts of encrypted numbers in a relatively short and decent time. The result is an application program interface written in C++ allowing to perform various operations on integers. It thus shows homomorphic encryption can be used today for simple operations if the security is more important than the speed of execution.
Credits to Shai Halevi for HElib obviously and thanks for the quick help tips in the Issues section!
Thanks to Dr. Wei Dai (Imperial College London) for introducing me to homomorphic encryption
Thanks to Christian Bodt (Coinplus) for teaching me the basics of cryptography and security, as well as useful coding skills.
Thanks to Alexandra Rouhana for her useful discussions that helped me figure out how to overcome some design restrictions.
Thanks to Wei Dai from the Vernam Group at Worcester Polytechnic Institute for keeping me updated with the status of CuHE.
Thanks to my dad, mother and step-mother for their continuous support throughout my studies.
- Use *= instead of multiplyBy when the level is very low as it is faster. multiplyBy uses relinearization which serves to reduce the size of ciphertexts. This is great for complex circuits but takes a longer time than *= for simple circuits.
- Add circuits from here to the core API
- Other ideas are in chapter 9: Future work of my report.