diff options
Diffstat (limited to 'accel-pppd/auth')
-rw-r--r-- | accel-pppd/auth/CMakeLists.txt | 6 | ||||
-rw-r--r-- | accel-pppd/auth/auth_chap_md5.c | 2 | ||||
-rw-r--r-- | accel-pppd/auth/auth_mschap_v1.c | 4 | ||||
-rw-r--r-- | accel-pppd/auth/auth_mschap_v2.c | 4 |
4 files changed, 6 insertions, 10 deletions
diff --git a/accel-pppd/auth/CMakeLists.txt b/accel-pppd/auth/CMakeLists.txt index ef9478a..7af8fac 100644 --- a/accel-pppd/auth/CMakeLists.txt +++ b/accel-pppd/auth/CMakeLists.txt @@ -3,9 +3,9 @@ ADD_LIBRARY(auth_chap_md5 SHARED auth_chap_md5.c) ADD_LIBRARY(auth_mschap_v1 SHARED auth_mschap_v1.c) ADD_LIBRARY(auth_mschap_v2 SHARED auth_mschap_v2.c) -TARGET_LINK_LIBRARIES(auth_chap_md5 crypto) -TARGET_LINK_LIBRARIES(auth_mschap_v1 crypto) -TARGET_LINK_LIBRARIES(auth_mschap_v2 crypto) +TARGET_LINK_LIBRARIES(auth_chap_md5 ${crypto_lib}) +TARGET_LINK_LIBRARIES(auth_mschap_v1 ${crypto_lib}) +TARGET_LINK_LIBRARIES(auth_mschap_v2 ${crypto_lib}) INSTALL(TARGETS auth_pap auth_chap_md5 auth_mschap_v1 auth_mschap_v2 LIBRARY DESTINATION lib/accel-ppp diff --git a/accel-pppd/auth/auth_chap_md5.c b/accel-pppd/auth/auth_chap_md5.c index 2307f14..d72f70a 100644 --- a/accel-pppd/auth/auth_chap_md5.c +++ b/accel-pppd/auth/auth_chap_md5.c @@ -7,7 +7,7 @@ #include <stdio.h> #include <arpa/inet.h> -#include <openssl/md5.h> +#include "crypto.h" #include "log.h" #include "ppp.h" diff --git a/accel-pppd/auth/auth_mschap_v1.c b/accel-pppd/auth/auth_mschap_v1.c index 10d5fe8..b212f03 100644 --- a/accel-pppd/auth/auth_mschap_v1.c +++ b/accel-pppd/auth/auth_mschap_v1.c @@ -8,9 +8,7 @@ #include <byteswap.h> #include <arpa/inet.h> -#include <openssl/md4.h> -#include <openssl/des.h> -#include <openssl/sha.h> +#include "crypto.h" #include "log.h" #include "ppp.h" diff --git a/accel-pppd/auth/auth_mschap_v2.c b/accel-pppd/auth/auth_mschap_v2.c index ebcffb7..0dd4143 100644 --- a/accel-pppd/auth/auth_mschap_v2.c +++ b/accel-pppd/auth/auth_mschap_v2.c @@ -8,9 +8,7 @@ #include <byteswap.h> #include <arpa/inet.h> -#include <openssl/md4.h> -#include <openssl/des.h> -#include <openssl/sha.h> +#include "crypto.h" #include "log.h" #include "ppp.h" |