Skip to content

Commit 0a4d813

Browse files
committed
Rebased and merged branch 'public' of https://github.com/oliver-schick/ABY into public
2 parents a2fc640 + afd317e commit 0a4d813

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ docs/*
1616
# build directory
1717
build*/
1818

19+
#dependencies directory
20+
extern/dependencies/
21+
1922
# CMake
2023
CMakeCache.txt
2124
CMakeFiles

src/abycore/cmake/Modules/FetchENCRYPTO_utils.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ set(ENCRYPTO_utils_REPOSITORY
77
set(ENCRYPTO_utils_TAG master CACHE STRING "Git tag of downloaded ENCRYPTO_utils project.")
88
#Specific commit hash. Please regularly update to maintain compatibility with ABY.
99
set(ENCRYPTO_utils_URL
10-
https://github.com/oliver-schick/ENCRYPTO_utils/archive/0380d7f82bc871ab9b1c593265e92482a070d8cf.zip
10+
https://github.com/oliver-schick/ENCRYPTO_utils/archive/6eeeed58c7206ab9f404521f36130c14beb5efdb.zip
1111
CACHE STRING "URL of ENCRYPTO_utils project.")
1212
#sha256sum of downloaded file. To get it on linux simply type following command line:
1313
#$ wget -O out [URL] && sha256sum out
14-
set(ENCRYPTO_utils_URL_HASH SHA256=e50fe0667a313a3209492bac20516750b4fa6b8bb19fd94f84043ac1fbbdbd68 CACHE STRING "Hash of ENCRYPTO_utils archive.")
14+
set(ENCRYPTO_utils_URL_HASH SHA256=c0629dd4ce5e73609f12d3a8c285b4e129416d0102bc475369b6eb895acbe876 CACHE STRING "Hash of ENCRYPTO_utils archive.")
1515
option(DOWNLOAD_ENCRYPTO_utils "Set this option to download a specific commit of ENCRYPTO_utils." OFF)
1616
mark_as_advanced(ENCRYPTO_utils_REPOSITORY ENCRYPTO_utils_TAG ENCRYPTO_utils_URL ENCRYPTO_utils_URL_HASH DOWNLOAD_ENCRYPTO_utils)
1717

src/abycore/cmake/Modules/FetchOTExtension.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ set(OTExtension_REPOSITORY
77
set(OTExtension_TAG master CACHE STRING "Git tag of downloaded OTExtension project.")
88
#Specific commit hash. Please regularly update to maintain compatibility with ABY.
99
set(OTExtension_URL
10-
https://github.com/oliver-schick/OTExtension/archive/5948eb026ac94f88c55b2d198ccc89234a79858f.zip
10+
https://github.com/oliver-schick/OTExtension/archive/c41ade2b0aa92204f55c07361360f056395f075d.zip
1111
CACHE STRING "URL of OTExtension project.")
1212
#sha256sum of downloaded file. To get it on linux simply type following command line:
1313
#$ wget -O out [URL] && sha256sum out
14-
set(OTExtension_URL_HASH SHA256=c64bc174706ddd7def18dcd8974b55ee8036d371a7d85fea0a48bfe290ca0b23 CACHE STRING "Hash of OTExtension archive.")
14+
set(OTExtension_URL_HASH SHA256=212e2e0875d97204b21aa962652a1aa7ddb631d0cc249aa1a05d8bdc220ac6ad CACHE STRING "Hash of OTExtension archive.")
1515
option(DOWNLOAD_OTExtension "Set this option to download a specific commit of OTExtension." OFF)
1616
mark_as_advanced(OTExtension_REPOSITORY OTExtension_TAG OTExtension_URL OTExtension_URL_HASH DOWNLOAD_OTExtension)
1717

0 commit comments

Comments
 (0)