aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2023-04-17 01:07:45 -0600
committerTheo Buehler <tb@openbsd.org>2023-04-17 01:07:45 -0600
commita71c37909f37812a592c6a7d343feb812b7253b5 (patch)
treefc934f8718a08dc857c7ffc10ed6b7da1b2e5fdc
parent4b388c7a45650e5f0bb3951ea28755a8901db867 (diff)
downloadportable-a71c37909f37812a592c6a7d343feb812b7253b5.tar.gz
portable-a71c37909f37812a592c6a7d343feb812b7253b5.tar.bz2
portable-a71c37909f37812a592c6a7d343feb812b7253b5.zip
Link sha3 to build.
-rw-r--r--crypto/CMakeLists.txt2
-rw-r--r--crypto/Makefile.am3
2 files changed, 5 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index ccaaf5d..6c70ea2 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -573,6 +573,7 @@ set(
573 evp/m_null.c 573 evp/m_null.c
574 evp/m_ripemd.c 574 evp/m_ripemd.c
575 evp/m_sha1.c 575 evp/m_sha1.c
576 evp/m_sha3.c
576 evp/m_sigver.c 577 evp/m_sigver.c
577 evp/m_streebog.c 578 evp/m_streebog.c
578 evp/m_sm3.c 579 evp/m_sm3.c
@@ -709,6 +710,7 @@ set(
709 rsa/rsa_x931.c 710 rsa/rsa_x931.c
710 sha/sha1.c 711 sha/sha1.c
711 sha/sha256.c 712 sha/sha256.c
713 sha/sha3.c
712 sha/sha512.c 714 sha/sha512.c
713 sm3/sm3.c 715 sm3/sm3.c
714 sm4/sm4.c 716 sm4/sm4.c
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 93d137e..0f0204e 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -760,6 +760,7 @@ libcrypto_la_SOURCES += evp/m_md5_sha1.c
760libcrypto_la_SOURCES += evp/m_null.c 760libcrypto_la_SOURCES += evp/m_null.c
761libcrypto_la_SOURCES += evp/m_ripemd.c 761libcrypto_la_SOURCES += evp/m_ripemd.c
762libcrypto_la_SOURCES += evp/m_sha1.c 762libcrypto_la_SOURCES += evp/m_sha1.c
763libcrypto_la_SOURCES += evp/m_sha3.c
763libcrypto_la_SOURCES += evp/m_sigver.c 764libcrypto_la_SOURCES += evp/m_sigver.c
764libcrypto_la_SOURCES += evp/m_streebog.c 765libcrypto_la_SOURCES += evp/m_streebog.c
765libcrypto_la_SOURCES += evp/m_sm3.c 766libcrypto_la_SOURCES += evp/m_sm3.c
@@ -967,8 +968,10 @@ noinst_HEADERS += rsa/rsa_local.h
967# sha 968# sha
968libcrypto_la_SOURCES += sha/sha1.c 969libcrypto_la_SOURCES += sha/sha1.c
969libcrypto_la_SOURCES += sha/sha256.c 970libcrypto_la_SOURCES += sha/sha256.c
971libcrypto_la_SOURCES += sha/sha3.c
970libcrypto_la_SOURCES += sha/sha512.c 972libcrypto_la_SOURCES += sha/sha512.c
971noinst_HEADERS += sha/sha_internal.h 973noinst_HEADERS += sha/sha_internal.h
974noinst_HEADERS += sha/sha3_internal.h
972 975
973# sm3 976# sm3
974libcrypto_la_SOURCES += sm3/sm3.c 977libcrypto_la_SOURCES += sm3/sm3.c