diff options
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/CMakeLists.txt | 2 | ||||
-rw-r--r-- | crypto/Makefile.am | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 895f419..2b48d32 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -281,6 +281,8 @@ set( | |||
281 | conf/conf_mall.c | 281 | conf/conf_mall.c |
282 | conf/conf_mod.c | 282 | conf/conf_mod.c |
283 | conf/conf_sap.c | 283 | conf/conf_sap.c |
284 | curve25519/curve25519-generic.c | ||
285 | curve25519/curve25519.c | ||
284 | des/cbc_cksm.c | 286 | des/cbc_cksm.c |
285 | des/cbc_enc.c | 287 | des/cbc_enc.c |
286 | des/cfb64ede.c | 288 | des/cfb64ede.c |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 1398863..5b7aa95 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -344,6 +344,12 @@ libcrypto_la_SOURCES += conf/conf_mod.c | |||
344 | libcrypto_la_SOURCES += conf/conf_sap.c | 344 | libcrypto_la_SOURCES += conf/conf_sap.c |
345 | noinst_HEADERS += conf/conf_def.h | 345 | noinst_HEADERS += conf/conf_def.h |
346 | 346 | ||
347 | # curve25519 | ||
348 | libcrypto_la_SOURCES += curve25519/curve25519-generic.c | ||
349 | libcrypto_la_SOURCES += curve25519/curve25519.c | ||
350 | noinst_HEADERS += curve25519/curve25519_internal.h | ||
351 | |||
352 | |||
347 | # des | 353 | # des |
348 | libcrypto_la_SOURCES += des/cbc_cksm.c | 354 | libcrypto_la_SOURCES += des/cbc_cksm.c |
349 | libcrypto_la_SOURCES += des/cbc_enc.c | 355 | libcrypto_la_SOURCES += des/cbc_enc.c |