From df8fc0576e78d4e45e154184f866554454ce4dec Mon Sep 17 00:00:00 2001 From: iliailia Date: Tue, 18 Jan 2022 23:52:28 +0100 Subject: [PATCH 1/2] Add requirements --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2177030..54a044e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ # FINAL The fully homomorphic encryption scheme based on NTRU and LWE. + +## Installation + +To run the code [NTL](https://libntl.org) and [FFTW](http://www.fftw.org) should be installed. + +## Usage + From 756555cd69e4ef11efa3d0b88a797a1d305d369f Mon Sep 17 00:00:00 2001 From: iliailia Date: Wed, 19 Jan 2022 16:08:05 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 54a044e..0232986 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,12 @@ # FINAL The fully homomorphic encryption scheme based on NTRU and LWE. -## Installation +## Run the code -To run the code [NTL](https://libntl.org) and [FFTW](http://www.fftw.org) should be installed. +1. Install [NTL](https://libntl.org) and [FFTW](http://www.fftw.org) with the related dependencies. +2. Run `make` in the main repository folder. +3. Run the `test` program and check that all the homomorphic gates are computed correctly. ## Usage +Use `test.cpp` and `Makefile` as reference points to create and compile your own program with FINAL.