diff options
author | Brent Cook <busterb@gmail.com> | 2022-05-08 22:23:36 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2022-05-08 22:23:36 -0500 |
commit | 5e974ea695aa57965c3037c787850012e188dfdb (patch) | |
tree | 8e3bf8185f5ccc1725e0b3d161f3c91e3d2af5b4 | |
parent | b52dc3d9b292f4f644d7506a2d62df11f2a6e269 (diff) | |
download | portable-5e974ea695aa57965c3037c787850012e188dfdb.tar.gz portable-5e974ea695aa57965c3037c787850012e188dfdb.tar.bz2 portable-5e974ea695aa57965c3037c787850012e188dfdb.zip |
update for latest upstream
-rw-r--r-- | crypto/CMakeLists.txt | 2 | ||||
-rw-r--r-- | crypto/Makefile.am | 5 | ||||
-rwxr-xr-x | update.sh | 2 |
3 files changed, 8 insertions, 1 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 | |||
760 | libcrypto_la_SOURCES += idea/i_skey.c | 760 | libcrypto_la_SOURCES += idea/i_skey.c |
761 | noinst_HEADERS += idea/idea_lcl.h | 761 | noinst_HEADERS += idea/idea_lcl.h |
762 | 762 | ||
763 | # kdf | ||
764 | libcrypto_la_SOURCES += kdf/hkdf_evp.c | ||
765 | libcrypto_la_SOURCES += kdf/kdf_err.c | ||
766 | noinst_HEADERS += kdf/kdf.h | ||
767 | |||
763 | # lhash | 768 | # lhash |
764 | libcrypto_la_SOURCES += lhash/lh_stats.c | 769 | libcrypto_la_SOURCES += lhash/lh_stats.c |
765 | libcrypto_la_SOURCES += lhash/lhash.c | 770 | libcrypto_la_SOURCES += lhash/lhash.c |
@@ -124,7 +124,7 @@ copy_hdrs $libcrypto_src "stack/stack.h lhash/lhash.h stack/safestack.h | |||
124 | rc2/rc2.h rc4/rc4.h ui/ui_compat.h txt_db/txt_db.h | 124 | rc2/rc2.h rc4/rc4.h ui/ui_compat.h txt_db/txt_db.h |
125 | sm3/sm3.h sm4/sm4.h chacha/chacha.h evp/evp.h poly1305/poly1305.h | 125 | sm3/sm3.h sm4/sm4.h chacha/chacha.h evp/evp.h poly1305/poly1305.h |
126 | camellia/camellia.h gost/gost.h curve25519/curve25519.h | 126 | camellia/camellia.h gost/gost.h curve25519/curve25519.h |
127 | ct/ct.h ct/cterr.h" | 127 | ct/ct.h" |
128 | 128 | ||
129 | copy_hdrs $libssl_src "srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h" | 129 | copy_hdrs $libssl_src "srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h" |
130 | 130 | ||