Add portable scaffold for SM3

This commit is contained in:
Jack Lloyd
2018-08-14 15:16:36 -04:00
parent 4dbf285573
commit d4803f134f
5 changed files with 18 additions and 1 deletions

View File

@@ -424,6 +424,7 @@ set(
evp/m_sha1.c
evp/m_sigver.c
evp/m_streebog.c
evp/m_sm3.c
evp/m_wp.c
evp/names.c
evp/p5_crpt.c
@@ -558,6 +559,7 @@ set(
sha/sha1dgst.c
sha/sha256.c
sha/sha512.c
sm3/sm3.c
stack/stack.c
ts/ts_asn1.c
ts/ts_conf.c

View File

@@ -614,6 +614,7 @@ libcrypto_la_SOURCES += evp/m_ripemd.c
libcrypto_la_SOURCES += evp/m_sha1.c
libcrypto_la_SOURCES += evp/m_sigver.c
libcrypto_la_SOURCES += evp/m_streebog.c
libcrypto_la_SOURCES += evp/m_sm3.c
libcrypto_la_SOURCES += evp/m_wp.c
libcrypto_la_SOURCES += evp/names.c
libcrypto_la_SOURCES += evp/p5_crpt.c
@@ -806,6 +807,10 @@ libcrypto_la_SOURCES += sha/sha256.c
libcrypto_la_SOURCES += sha/sha512.c
noinst_HEADERS += sha/sha_locl.h
# sm3
libcrypto_la_SOURCES += sm3/sm3.c
noinst_HEADERS += sm3/sm3_locl.h
# stack
libcrypto_la_SOURCES += stack/stack.c