add hmac_local.h

This commit is contained in:
Brent Cook 2021-12-15 03:32:25 -06:00
parent 755afbe5e4
commit 26ed65c0b1
2 changed files with 3 additions and 0 deletions

View File

@ -998,6 +998,7 @@ target_include_directories(crypto_obj
ecdh ecdh
ecdsa ecdsa
evp evp
hmac
modes modes
x509 x509
../include/compat ../include/compat

View File

@ -9,6 +9,7 @@ AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh
AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa
AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp
AM_CPPFLAGS += -I$(top_srcdir)/crypto/hmac
AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes
AM_CPPFLAGS += -I$(top_srcdir)/crypto/x509 AM_CPPFLAGS += -I$(top_srcdir)/crypto/x509
AM_CPPFLAGS += -I$(top_srcdir)/crypto AM_CPPFLAGS += -I$(top_srcdir)/crypto
@ -747,6 +748,7 @@ libcrypto_la_SOURCES += hkdf/hkdf.c
libcrypto_la_SOURCES += hmac/hm_ameth.c libcrypto_la_SOURCES += hmac/hm_ameth.c
libcrypto_la_SOURCES += hmac/hm_pmeth.c libcrypto_la_SOURCES += hmac/hm_pmeth.c
libcrypto_la_SOURCES += hmac/hmac.c libcrypto_la_SOURCES += hmac/hmac.c
noinst_HEADERS += hmac/hmac_local.h
# idea # idea
libcrypto_la_SOURCES += idea/i_cbc.c libcrypto_la_SOURCES += idea/i_cbc.c