aboutsummaryrefslogtreecommitdiff
path: root/libcmix-crypto/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'libcmix-crypto/CMakeLists.txt')
-rw-r--r--libcmix-crypto/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcmix-crypto/CMakeLists.txt b/libcmix-crypto/CMakeLists.txt
index e73ed38..dea1196 100644
--- a/libcmix-crypto/CMakeLists.txt
+++ b/libcmix-crypto/CMakeLists.txt
@@ -19,8 +19,8 @@ target_sources(cmix-crypto-interface
include(curve25519_implementations)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/curve25519/)
-include(rsa_implementations)
-add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/rsa)
+include(elgamal_implementations)
+add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/elgamal)
add_library(cmix-crypto INTERFACE)
@@ -36,5 +36,5 @@ option(UseEC "Use curve25519 instead of RSA" ON)
target_link_libraries(cmix-crypto
INTERFACE curve25519-implementation
- INTERFACE rsa-implementation
+ INTERFACE elgamal-implementation
)