Skip to content

Commit

Permalink
v1.3.1 Updates
Browse files Browse the repository at this point in the history
* v1.3.1 updates
  • Loading branch information
faberga authored Dec 21, 2020
1 parent 8296270 commit 04f5c48
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
HElib 1.3.1, December 2020
=========================
(tagged as v1.3.1)

* Refactoring of CKKS Mitigation
* Re-instated `Ctxt` isCorrect
* Ctxt Conjugation fix
* Added GMP and NTL alternative download locations

HElib 1.3.0, December 2020
=========================
(tagged as v1.3.0)
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ endif (NOT CMAKE_BUILD_TYPE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug" "RelWithDebInfo" "Release" "MinSizeRel")

find_package(helib 1.3.0 EXACT REQUIRED)
find_package(helib 1.3.1 EXACT REQUIRED)
find_package(benchmark REQUIRED)

# Targets are simply associated with their source files.
Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")

find_package(helib 1.3.0 EXACT REQUIRED)
find_package(helib 1.3.1 EXACT REQUIRED)

add_subdirectory(BGV_binary_arithmetic)
add_subdirectory(BGV_country_db_lookup)
Expand Down
2 changes: 1 addition & 1 deletion misc/psi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")

find_package(helib 1.3.0 EXACT REQUIRED)
find_package(helib 1.3.1 EXACT REQUIRED)

add_subdirectory(scoring)
add_subdirectory(lookup)
2 changes: 1 addition & 1 deletion misc/psi/lookup/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)

project(lookup LANGUAGES CXX)

find_package(helib 1.3.0 EXACT REQUIRED)
find_package(helib 1.3.1 EXACT REQUIRED)

add_executable(lookup lookup.cpp)

Expand Down
2 changes: 1 addition & 1 deletion misc/psi/scoring/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)

project(scoring LANGUAGES CXX)

find_package(helib 1.3.0 EXACT REQUIRED)
find_package(helib 1.3.1 EXACT REQUIRED)

add_executable(scoring scoring.cpp)

Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)

project(helib
VERSION 1.3.0
VERSION 1.3.1
LANGUAGES CXX)

# Globals HELIB_CMAKE_EXTRA_DIR, HELIB_INCLUDE_DIR, HELIB_HEADER_DIR,
Expand Down
2 changes: 1 addition & 1 deletion utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
"${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}")

find_package(helib 1.3.0 EXACT REQUIRED)
find_package(helib 1.3.1 EXACT REQUIRED)

add_subdirectory(create-context)
add_subdirectory(crypto)
Expand Down

0 comments on commit 04f5c48

Please sign in to comment.