update for latest upstream

This commit is contained in:
Brent Cook 2022-05-08 22:23:36 -05:00
parent b52dc3d9b2
commit 5e974ea695
3 changed files with 8 additions and 1 deletions

View File

@ -602,6 +602,8 @@ set(
idea/i_ecb.c idea/i_ecb.c
idea/i_ofb64.c idea/i_ofb64.c
idea/i_skey.c idea/i_skey.c
kdf/hkdf_evp.c
kdf/kdf_err.c
lhash/lh_stats.c lhash/lh_stats.c
lhash/lhash.c lhash/lhash.c
md4/md4_dgst.c md4/md4_dgst.c

View File

@ -760,6 +760,11 @@ libcrypto_la_SOURCES += idea/i_ofb64.c
libcrypto_la_SOURCES += idea/i_skey.c libcrypto_la_SOURCES += idea/i_skey.c
noinst_HEADERS += idea/idea_lcl.h noinst_HEADERS += idea/idea_lcl.h
# kdf
libcrypto_la_SOURCES += kdf/hkdf_evp.c
libcrypto_la_SOURCES += kdf/kdf_err.c
noinst_HEADERS += kdf/kdf.h
# lhash # lhash
libcrypto_la_SOURCES += lhash/lh_stats.c libcrypto_la_SOURCES += lhash/lh_stats.c
libcrypto_la_SOURCES += lhash/lhash.c libcrypto_la_SOURCES += lhash/lhash.c

View File

@ -124,7 +124,7 @@ copy_hdrs $libcrypto_src "stack/stack.h lhash/lhash.h stack/safestack.h
rc2/rc2.h rc4/rc4.h ui/ui_compat.h txt_db/txt_db.h rc2/rc2.h rc4/rc4.h ui/ui_compat.h txt_db/txt_db.h
sm3/sm3.h sm4/sm4.h chacha/chacha.h evp/evp.h poly1305/poly1305.h sm3/sm3.h sm4/sm4.h chacha/chacha.h evp/evp.h poly1305/poly1305.h
camellia/camellia.h gost/gost.h curve25519/curve25519.h camellia/camellia.h gost/gost.h curve25519/curve25519.h
ct/ct.h ct/cterr.h" ct/ct.h"
copy_hdrs $libssl_src "srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h" copy_hdrs $libssl_src "srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h"