Browse Source

updating to support SEAL 4.0

Sebastian Angel 2 years ago
parent
commit
a38a0943f4
2 changed files with 3 additions and 3 deletions
  1. 2 2
      README.md
  2. 1 1
      src/CMakeLists.txt

+ 2 - 2
README.md

@@ -8,13 +8,13 @@ a copy of the paper [here](https://eprint.iacr.org/2017/1142.pdf).
 
 # Compiling SEAL
 
-SealPIR depends on [Microsoft SEAL version 3.7.2](https://github.com/microsoft/SEAL/tree/3.7.2).
+SealPIR depends on [Microsoft SEAL version 4.0.0](https://github.com/microsoft/SEAL/tree/4.0.0).
 
 Download and install SEAL (follow the instructions in the above link) before before compiling SealPIR.
 
 # Compiling SealPIR
 
-Once Microsoft SEAL 3.7.2 is installed, to build SealPIR simply run:
+Once Microsoft SEAL 4.0.0 is installed, to build SealPIR simply run:
 
 ```
 cmake .

+ 1 - 1
src/CMakeLists.txt

@@ -1,4 +1,4 @@
-find_package(SEAL 3.7.2 REQUIRED)
+find_package(SEAL 4.0 REQUIRED)
 
 add_library(sealpir pir.hpp pir.cpp pir_client.hpp pir_client.cpp pir_server.hpp
   pir_server.cpp)