aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crypto/CMakeLists.txt5
-rw-r--r--crypto/Makefile.am5
2 files changed, 4 insertions, 6 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index a364e86..c2a6ee0 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -370,6 +370,7 @@ set(
370 bn/bn_kron.c 370 bn/bn_kron.c
371 bn/bn_lib.c 371 bn/bn_lib.c
372 bn/bn_mod.c 372 bn/bn_mod.c
373 bn/bn_mod_sqrt.c
373 bn/bn_mont.c 374 bn/bn_mont.c
374 bn/bn_mpi.c 375 bn/bn_mpi.c
375 bn/bn_mul.c 376 bn/bn_mul.c
@@ -381,7 +382,6 @@ set(
381 bn/bn_shift.c 382 bn/bn_shift.c
382 bn/bn_small_primes.c 383 bn/bn_small_primes.c
383 bn/bn_sqr.c 384 bn/bn_sqr.c
384 bn/bn_sqrt.c
385 bn/bn_word.c 385 bn/bn_word.c
386 bn/bn_x931p.c 386 bn/bn_x931p.c
387 buffer/buf_err.c 387 buffer/buf_err.c
@@ -723,8 +723,7 @@ set(
723 rsa/rsa_saos.c 723 rsa/rsa_saos.c
724 rsa/rsa_sign.c 724 rsa/rsa_sign.c
725 rsa/rsa_x931.c 725 rsa/rsa_x931.c
726 sha/sha1_one.c 726 sha/sha1.c
727 sha/sha1dgst.c
728 sha/sha256.c 727 sha/sha256.c
729 sha/sha512.c 728 sha/sha512.c
730 sm3/sm3.c 729 sm3/sm3.c
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 3939802..da37427 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -426,6 +426,7 @@ libcrypto_la_SOURCES += bn/bn_isqrt.c
426libcrypto_la_SOURCES += bn/bn_kron.c 426libcrypto_la_SOURCES += bn/bn_kron.c
427libcrypto_la_SOURCES += bn/bn_lib.c 427libcrypto_la_SOURCES += bn/bn_lib.c
428libcrypto_la_SOURCES += bn/bn_mod.c 428libcrypto_la_SOURCES += bn/bn_mod.c
429libcrypto_la_SOURCES += bn/bn_mod_sqrt.c
429libcrypto_la_SOURCES += bn/bn_mont.c 430libcrypto_la_SOURCES += bn/bn_mont.c
430libcrypto_la_SOURCES += bn/bn_mpi.c 431libcrypto_la_SOURCES += bn/bn_mpi.c
431libcrypto_la_SOURCES += bn/bn_mul.c 432libcrypto_la_SOURCES += bn/bn_mul.c
@@ -437,7 +438,6 @@ libcrypto_la_SOURCES += bn/bn_recp.c
437libcrypto_la_SOURCES += bn/bn_shift.c 438libcrypto_la_SOURCES += bn/bn_shift.c
438libcrypto_la_SOURCES += bn/bn_small_primes.c 439libcrypto_la_SOURCES += bn/bn_small_primes.c
439libcrypto_la_SOURCES += bn/bn_sqr.c 440libcrypto_la_SOURCES += bn/bn_sqr.c
440libcrypto_la_SOURCES += bn/bn_sqrt.c
441libcrypto_la_SOURCES += bn/bn_word.c 441libcrypto_la_SOURCES += bn/bn_word.c
442libcrypto_la_SOURCES += bn/bn_x931p.c 442libcrypto_la_SOURCES += bn/bn_x931p.c
443noinst_HEADERS += bn/bn_internal.h 443noinst_HEADERS += bn/bn_internal.h
@@ -969,8 +969,7 @@ libcrypto_la_SOURCES += rsa/rsa_x931.c
969noinst_HEADERS += rsa/rsa_local.h 969noinst_HEADERS += rsa/rsa_local.h
970 970
971# sha 971# sha
972libcrypto_la_SOURCES += sha/sha1_one.c 972libcrypto_la_SOURCES += sha/sha1.c
973libcrypto_la_SOURCES += sha/sha1dgst.c
974libcrypto_la_SOURCES += sha/sha256.c 973libcrypto_la_SOURCES += sha/sha256.c
975libcrypto_la_SOURCES += sha/sha512.c 974libcrypto_la_SOURCES += sha/sha512.c
976noinst_HEADERS += sha/sha_local.h 975noinst_HEADERS += sha/sha_local.h