aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorJack Lloyd <jack.lloyd@ribose.com>2018-08-14 15:16:36 -0400
committerJack Lloyd <jack.lloyd@ribose.com>2018-08-14 15:16:36 -0400
commitd4803f134fc485da2d538e759d184f961adee76f (patch)
tree008fe3f9e08ee2f02147c0c42c4338fb637b958d /crypto
parent4dbf285573d5254e5169be44e45c7685a336b6e8 (diff)
downloadportable-d4803f134fc485da2d538e759d184f961adee76f.tar.gz
portable-d4803f134fc485da2d538e759d184f961adee76f.tar.bz2
portable-d4803f134fc485da2d538e759d184f961adee76f.zip
Add portable scaffold for SM3
Diffstat (limited to 'crypto')
-rw-r--r--crypto/CMakeLists.txt2
-rw-r--r--crypto/Makefile.am5
2 files changed, 7 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index 90e127e..c394360 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -424,6 +424,7 @@ set(
424 evp/m_sha1.c 424 evp/m_sha1.c
425 evp/m_sigver.c 425 evp/m_sigver.c
426 evp/m_streebog.c 426 evp/m_streebog.c
427 evp/m_sm3.c
427 evp/m_wp.c 428 evp/m_wp.c
428 evp/names.c 429 evp/names.c
429 evp/p5_crpt.c 430 evp/p5_crpt.c
@@ -558,6 +559,7 @@ set(
558 sha/sha1dgst.c 559 sha/sha1dgst.c
559 sha/sha256.c 560 sha/sha256.c
560 sha/sha512.c 561 sha/sha512.c
562 sm3/sm3.c
561 stack/stack.c 563 stack/stack.c
562 ts/ts_asn1.c 564 ts/ts_asn1.c
563 ts/ts_conf.c 565 ts/ts_conf.c
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 3073342..492a30e 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -614,6 +614,7 @@ libcrypto_la_SOURCES += evp/m_ripemd.c
614libcrypto_la_SOURCES += evp/m_sha1.c 614libcrypto_la_SOURCES += evp/m_sha1.c
615libcrypto_la_SOURCES += evp/m_sigver.c 615libcrypto_la_SOURCES += evp/m_sigver.c
616libcrypto_la_SOURCES += evp/m_streebog.c 616libcrypto_la_SOURCES += evp/m_streebog.c
617libcrypto_la_SOURCES += evp/m_sm3.c
617libcrypto_la_SOURCES += evp/m_wp.c 618libcrypto_la_SOURCES += evp/m_wp.c
618libcrypto_la_SOURCES += evp/names.c 619libcrypto_la_SOURCES += evp/names.c
619libcrypto_la_SOURCES += evp/p5_crpt.c 620libcrypto_la_SOURCES += evp/p5_crpt.c
@@ -806,6 +807,10 @@ libcrypto_la_SOURCES += sha/sha256.c
806libcrypto_la_SOURCES += sha/sha512.c 807libcrypto_la_SOURCES += sha/sha512.c
807noinst_HEADERS += sha/sha_locl.h 808noinst_HEADERS += sha/sha_locl.h
808 809
810# sm3
811libcrypto_la_SOURCES += sm3/sm3.c
812noinst_HEADERS += sm3/sm3_locl.h
813
809# stack 814# stack
810libcrypto_la_SOURCES += stack/stack.c 815libcrypto_la_SOURCES += stack/stack.c
811 816