aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/hmac
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/hmac')
-rw-r--r--crypto/hmac/Makefile.ssl6
-rw-r--r--crypto/hmac/hmac.c2
-rw-r--r--crypto/hmac/hmac.h2
-rw-r--r--crypto/hmac/hmactest.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/crypto/hmac/Makefile.ssl b/crypto/hmac/Makefile.ssl
index 294ff15e2e..2853525e28 100644
--- a/crypto/hmac/Makefile.ssl
+++ b/crypto/hmac/Makefile.ssl
@@ -45,15 +45,15 @@ files:
links:
@$(TOP)/util/point.sh Makefile.ssl Makefile
- @$(TOP)/util/mklink.sh ../../include $(EXHEADER)
+ @$(TOP)/util/mklink.sh ../../include/openssl $(EXHEADER)
@$(TOP)/util/mklink.sh ../../test $(TEST)
@$(TOP)/util/mklink.sh ../../apps $(APPS)
install:
@for i in $(EXHEADER) ; \
do \
- (cp $$i $(INSTALLTOP)/include/$$i; \
- chmod 644 $(INSTALLTOP)/include/$$i ); \
+ (cp $$i $(INSTALLTOP)/include/openssl/$$i; \
+ chmod 644 $(INSTALLTOP)/include/openssl/$$i ); \
done;
tags:
diff --git a/crypto/hmac/hmac.c b/crypto/hmac/hmac.c
index bf293804c5..d31e880e6f 100644
--- a/crypto/hmac/hmac.c
+++ b/crypto/hmac/hmac.c
@@ -58,7 +58,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include "hmac.h"
+#include <openssl/hmac.h>
void HMAC_Init(HMAC_CTX *ctx, const unsigned char *key, int len,
const EVP_MD *md)
diff --git a/crypto/hmac/hmac.h b/crypto/hmac/hmac.h
index 2fc974417a..c2fe29f550 100644
--- a/crypto/hmac/hmac.h
+++ b/crypto/hmac/hmac.h
@@ -62,7 +62,7 @@
extern "C" {
#endif
-#include "evp.h"
+#include <openssl/evp.h>
#define HMAC_MAX_MD_CBLOCK 64
diff --git a/crypto/hmac/hmactest.c b/crypto/hmac/hmactest.c
index 13b3946348..40344e9958 100644
--- a/crypto/hmac/hmactest.c
+++ b/crypto/hmac/hmactest.c
@@ -59,7 +59,7 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
-#include "hmac.h"
+#include <openssl/hmac.h>
struct test_st
{