diff options
author | Brent Cook <busterb@gmail.com> | 2021-12-15 03:32:25 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2021-12-15 03:32:25 -0600 |
commit | 26ed65c0b1ed923cd8203b85563c81c946083ad0 (patch) | |
tree | 9f60ecb1fd145f8e29fde8bb12fb6f0fa7ee8543 | |
parent | 755afbe5e465c4f3b67abe3d053dd3e6e0da3104 (diff) | |
download | portable-26ed65c0b1ed923cd8203b85563c81c946083ad0.tar.gz portable-26ed65c0b1ed923cd8203b85563c81c946083ad0.tar.bz2 portable-26ed65c0b1ed923cd8203b85563c81c946083ad0.zip |
add hmac_local.h
-rw-r--r-- | crypto/CMakeLists.txt | 1 | ||||
-rw-r--r-- | crypto/Makefile.am | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 4e8a05a..d1be1a8 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -998,6 +998,7 @@ target_include_directories(crypto_obj | |||
998 | ecdh | 998 | ecdh |
999 | ecdsa | 999 | ecdsa |
1000 | evp | 1000 | evp |
1001 | hmac | ||
1001 | modes | 1002 | modes |
1002 | x509 | 1003 | x509 |
1003 | ../include/compat | 1004 | ../include/compat |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 83531db..d7b13a5 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -9,6 +9,7 @@ AM_CPPFLAGS += -I$(top_srcdir)/crypto/ec | |||
9 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh | 9 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdh |
10 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa | 10 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ecdsa |
11 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp | 11 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp |
12 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/hmac | ||
12 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes | 13 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes |
13 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/x509 | 14 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/x509 |
14 | AM_CPPFLAGS += -I$(top_srcdir)/crypto | 15 | AM_CPPFLAGS += -I$(top_srcdir)/crypto |
@@ -747,6 +748,7 @@ libcrypto_la_SOURCES += hkdf/hkdf.c | |||
747 | libcrypto_la_SOURCES += hmac/hm_ameth.c | 748 | libcrypto_la_SOURCES += hmac/hm_ameth.c |
748 | libcrypto_la_SOURCES += hmac/hm_pmeth.c | 749 | libcrypto_la_SOURCES += hmac/hm_pmeth.c |
749 | libcrypto_la_SOURCES += hmac/hmac.c | 750 | libcrypto_la_SOURCES += hmac/hmac.c |
751 | noinst_HEADERS += hmac/hmac_local.h | ||
750 | 752 | ||
751 | # idea | 753 | # idea |
752 | libcrypto_la_SOURCES += idea/i_cbc.c | 754 | libcrypto_la_SOURCES += idea/i_cbc.c |