Link sha3 to build.

This commit is contained in:
Theo Buehler 2023-04-17 01:07:45 -06:00
parent 4b388c7a45
commit a71c37909f
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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