diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d77c5c..b816e36 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10) -project(SealPIR VERSION 1.1 LANGUAGES CXX) +project(SealPIR VERSION 2.0 LANGUAGES CXX) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin) @@ -11,9 +11,7 @@ add_executable(sealpir pir_server.cpp ) -find_package(SEAL 3.1.0 EXACT REQUIRED) -find_package(Threads REQUIRED) +find_package(SEAL 3.2.0 EXACT REQUIRED) -target_link_libraries(sealpir - SEAL::seal +target_link_libraries(sealpir SEAL::seal ) diff --git a/README.md b/README.md index 5a14ac3..cbf28f6 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,11 @@ SealPIR is a (research) library and should not be used in production systems. Se # Compiling SEAL -SealPIR depends on SEAL 2.3.1 ([link](http://sealcrypto.org)). Download SEAL, and follow the instructions in INSTALL.txt to install it system-wide. +SealPIR depends on Microsoft SEAL version 3.2 ([link](https://www.microsoft.com/en-us/research/project/simple-encrypted-arithmetic-library/)). Download Microsoft SEAL, and follow the instructions in README.md to install it system-wide. # Compiling SealPIR -Once SEAL 2.3.1 is installed, to build SealPIR simply run: +Once Microsoft SEAL 3.2 is installed, to build SealPIR simply run: cmake . make