aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2022-05-08 22:23:36 -0500
committerBrent Cook <busterb@gmail.com>2022-05-08 22:23:36 -0500
commit5e974ea695aa57965c3037c787850012e188dfdb (patch)
tree8e3bf8185f5ccc1725e0b3d161f3c91e3d2af5b4 /crypto
parentb52dc3d9b292f4f644d7506a2d62df11f2a6e269 (diff)
downloadportable-5e974ea695aa57965c3037c787850012e188dfdb.tar.gz
portable-5e974ea695aa57965c3037c787850012e188dfdb.tar.bz2
portable-5e974ea695aa57965c3037c787850012e188dfdb.zip
update for latest upstream
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 9b66d9f..2d23332 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -602,6 +602,8 @@ set(
602 idea/i_ecb.c 602 idea/i_ecb.c
603 idea/i_ofb64.c 603 idea/i_ofb64.c
604 idea/i_skey.c 604 idea/i_skey.c
605 kdf/hkdf_evp.c
606 kdf/kdf_err.c
605 lhash/lh_stats.c 607 lhash/lh_stats.c
606 lhash/lhash.c 608 lhash/lhash.c
607 md4/md4_dgst.c 609 md4/md4_dgst.c
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 0f39753..888270b 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -760,6 +760,11 @@ libcrypto_la_SOURCES += idea/i_ofb64.c
760libcrypto_la_SOURCES += idea/i_skey.c 760libcrypto_la_SOURCES += idea/i_skey.c
761noinst_HEADERS += idea/idea_lcl.h 761noinst_HEADERS += idea/idea_lcl.h
762 762
763# kdf
764libcrypto_la_SOURCES += kdf/hkdf_evp.c
765libcrypto_la_SOURCES += kdf/kdf_err.c
766noinst_HEADERS += kdf/kdf.h
767
763# lhash 768# lhash
764libcrypto_la_SOURCES += lhash/lh_stats.c 769libcrypto_la_SOURCES += lhash/lh_stats.c
765libcrypto_la_SOURCES += lhash/lhash.c 770libcrypto_la_SOURCES += lhash/lhash.c