From a71c37909f37812a592c6a7d343feb812b7253b5 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Mon, 17 Apr 2023 01:07:45 -0600 Subject: Link sha3 to build. --- crypto/CMakeLists.txt | 2 ++ crypto/Makefile.am | 3 +++ 2 files changed, 5 insertions(+) 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( evp/m_null.c evp/m_ripemd.c evp/m_sha1.c + evp/m_sha3.c evp/m_sigver.c evp/m_streebog.c evp/m_sm3.c @@ -709,6 +710,7 @@ set( rsa/rsa_x931.c sha/sha1.c sha/sha256.c + sha/sha3.c sha/sha512.c sm3/sm3.c 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 libcrypto_la_SOURCES += evp/m_null.c libcrypto_la_SOURCES += evp/m_ripemd.c libcrypto_la_SOURCES += evp/m_sha1.c +libcrypto_la_SOURCES += evp/m_sha3.c libcrypto_la_SOURCES += evp/m_sigver.c libcrypto_la_SOURCES += evp/m_streebog.c libcrypto_la_SOURCES += evp/m_sm3.c @@ -967,8 +968,10 @@ noinst_HEADERS += rsa/rsa_local.h # sha libcrypto_la_SOURCES += sha/sha1.c libcrypto_la_SOURCES += sha/sha256.c +libcrypto_la_SOURCES += sha/sha3.c libcrypto_la_SOURCES += sha/sha512.c noinst_HEADERS += sha/sha_internal.h +noinst_HEADERS += sha/sha3_internal.h # sm3 libcrypto_la_SOURCES += sm3/sm3.c -- cgit v1.2.3-55-g6feb