aboutsummaryrefslogtreecommitdiff
path: root/libcmix-crypto/elgamal
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-10-04 12:18:35 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2016-10-04 12:18:35 +0200
commit4f2c980343b321e7fccf48190c32bfb4bca426f4 (patch)
treee08d299dc9da1976c8924207f9cbfbc8bd06709a /libcmix-crypto/elgamal
parentad3d46b0b6ca285bbaf1540e9805714addfeb9af (diff)
downloadcmix-4f2c980343b321e7fccf48190c32bfb4bca426f4.tar.gz
cmix-4f2c980343b321e7fccf48190c32bfb4bca426f4.tar.bz2
cmix-4f2c980343b321e7fccf48190c32bfb4bca426f4.zip
Added a bignum library to abstract possible implementations.
Diffstat (limited to 'libcmix-crypto/elgamal')
-rw-r--r--libcmix-crypto/elgamal/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcmix-crypto/elgamal/CMakeLists.txt b/libcmix-crypto/elgamal/CMakeLists.txt
index b92e5ae..8ee9a11 100644
--- a/libcmix-crypto/elgamal/CMakeLists.txt
+++ b/libcmix-crypto/elgamal/CMakeLists.txt
@@ -12,7 +12,7 @@ target_link_libraries(elgamal-interface
INTERFACE cmix-crypto-interface
)
-foreach(impl ${elgamal_implementations})
+foreach(impl ${libcmix_crypto_elgamal_implementations})
add_subdirectory(${impl})
endforeach()
@@ -26,5 +26,5 @@ target_include_directories(elgamal-implementation
target_link_libraries(elgamal-implementation
PUBLIC elgamal-interface
- PUBLIC elgamal-${elgamal_implementation}
+ PUBLIC elgamal-${libcmix_crypto_elgamal_implementation}
)