diff options
author | Theo Buehler <tb@openbsd.org> | 2023-04-17 01:07:45 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2023-04-17 01:07:45 -0600 |
commit | a71c37909f37812a592c6a7d343feb812b7253b5 (patch) | |
tree | fc934f8718a08dc857c7ffc10ed6b7da1b2e5fdc | |
parent | 4b388c7a45650e5f0bb3951ea28755a8901db867 (diff) | |
download | portable-a71c37909f37812a592c6a7d343feb812b7253b5.tar.gz portable-a71c37909f37812a592c6a7d343feb812b7253b5.tar.bz2 portable-a71c37909f37812a592c6a7d343feb812b7253b5.zip |
Link sha3 to build.
-rw-r--r-- | crypto/CMakeLists.txt | 2 | ||||
-rw-r--r-- | crypto/Makefile.am | 3 |
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 | |||
760 | libcrypto_la_SOURCES += evp/m_null.c | 760 | libcrypto_la_SOURCES += evp/m_null.c |
761 | libcrypto_la_SOURCES += evp/m_ripemd.c | 761 | libcrypto_la_SOURCES += evp/m_ripemd.c |
762 | libcrypto_la_SOURCES += evp/m_sha1.c | 762 | libcrypto_la_SOURCES += evp/m_sha1.c |
763 | libcrypto_la_SOURCES += evp/m_sha3.c | ||
763 | libcrypto_la_SOURCES += evp/m_sigver.c | 764 | libcrypto_la_SOURCES += evp/m_sigver.c |
764 | libcrypto_la_SOURCES += evp/m_streebog.c | 765 | libcrypto_la_SOURCES += evp/m_streebog.c |
765 | libcrypto_la_SOURCES += evp/m_sm3.c | 766 | libcrypto_la_SOURCES += evp/m_sm3.c |
@@ -967,8 +968,10 @@ noinst_HEADERS += rsa/rsa_local.h | |||
967 | # sha | 968 | # sha |
968 | libcrypto_la_SOURCES += sha/sha1.c | 969 | libcrypto_la_SOURCES += sha/sha1.c |
969 | libcrypto_la_SOURCES += sha/sha256.c | 970 | libcrypto_la_SOURCES += sha/sha256.c |
971 | libcrypto_la_SOURCES += sha/sha3.c | ||
970 | libcrypto_la_SOURCES += sha/sha512.c | 972 | libcrypto_la_SOURCES += sha/sha512.c |
971 | noinst_HEADERS += sha/sha_internal.h | 973 | noinst_HEADERS += sha/sha_internal.h |
974 | noinst_HEADERS += sha/sha3_internal.h | ||
972 | 975 | ||
973 | # sm3 | 976 | # sm3 |
974 | libcrypto_la_SOURCES += sm3/sm3.c | 977 | libcrypto_la_SOURCES += sm3/sm3.c |