From 1506aa4fffa42b8ebb18c1a2ed2ca23be7d2bd07 Mon Sep 17 00:00:00 2001 From: Dhimas Bagus Prayoga Date: Thu, 16 Jul 2020 16:30:28 +0700 Subject: [PATCH] Cmake: Add curve25519 Fix for missing curve25519 --- brute_force/www_brute/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/brute_force/www_brute/CMakeLists.txt b/brute_force/www_brute/CMakeLists.txt index 370c6db..47b733c 100644 --- a/brute_force/www_brute/CMakeLists.txt +++ b/brute_force/www_brute/CMakeLists.txt @@ -18,7 +18,8 @@ add_executable(${PROJECT_NAME} ../../common/md4.cpp ../../common/rc4.cpp ../../common/des.cpp + ../../common/curve25519-donna.cpp ../../common/winbox_message.cpp) -target_link_libraries(${PROJECT_NAME} ${Boost_LIBRARIES} -lpthread) \ No newline at end of file +target_link_libraries(${PROJECT_NAME} ${Boost_LIBRARIES} -lpthread)