summaryrefslogtreecommitdiffstats
path: root/crypto/sha
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-23 22:13:45 +0000
committerBodo Möller <bodo@openssl.org>1999-04-23 22:13:45 +0000
commitec577822f95a8bca0023c5c77cef1a4916822d4a (patch)
tree206e75c0178ff0719b87a4d94e261fc243ce42a8 /crypto/sha
parent806115771c7a056756cb5f93bb3aaa71cd418e49 (diff)
Change #include filenames from <foo.h> to <openssl.h>.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'crypto/sha')
-rw-r--r--crypto/sha/Makefile.ssl6
-rw-r--r--crypto/sha/sha.c2
-rw-r--r--crypto/sha/sha1.c2
-rw-r--r--crypto/sha/sha1_one.c2
-rw-r--r--crypto/sha/sha1dgst.c4
-rw-r--r--crypto/sha/sha1test.c2
-rw-r--r--crypto/sha/sha_dgst.c4
-rw-r--r--crypto/sha/sha_one.c2
-rw-r--r--crypto/sha/shatest.c2
9 files changed, 13 insertions, 13 deletions
diff --git a/crypto/sha/Makefile.ssl b/crypto/sha/Makefile.ssl
index 19986707e6..69b16ab23e 100644
--- a/crypto/sha/Makefile.ssl
+++ b/crypto/sha/Makefile.ssl
@@ -68,15 +68,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/sha/sha.c b/crypto/sha/sha.c
index 486819d6f7..3d339819cb 100644
--- a/crypto/sha/sha.c
+++ b/crypto/sha/sha.c
@@ -58,7 +58,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include "sha.h"
+#include <openssl/sha.h>
#define BUFSIZE 1024*16
diff --git a/crypto/sha/sha1.c b/crypto/sha/sha1.c
index b708dec06c..317e9ac255 100644
--- a/crypto/sha/sha1.c
+++ b/crypto/sha/sha1.c
@@ -58,7 +58,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include "sha.h"
+#include <openssl/sha.h>
#define BUFSIZE 1024*16
diff --git a/crypto/sha/sha1_one.c b/crypto/sha/sha1_one.c
index 07af9bf4da..b5a93d96e1 100644
--- a/crypto/sha/sha1_one.c
+++ b/crypto/sha/sha1_one.c
@@ -58,7 +58,7 @@
#include <stdio.h>
#include <string.h>
-#include "sha.h"
+#include <openssl/sha.h>
unsigned char *SHA1(unsigned char *d, unsigned long n, unsigned char *md)
{
diff --git a/crypto/sha/sha1dgst.c b/crypto/sha/sha1dgst.c
index c7d52ee734..53b8d8cc30 100644
--- a/crypto/sha/sha1dgst.c
+++ b/crypto/sha/sha1dgst.c
@@ -60,9 +60,9 @@
#include <string.h>
#undef SHA_0
#define SHA_1
-#include "sha.h"
+#include <openssl/sha.h>
#include "sha_locl.h"
-#include "opensslv.h"
+#include <openssl/opensslv.h>
char *SHA1_version="SHA1" OPENSSL_VERSION_PTEXT;
diff --git a/crypto/sha/sha1test.c b/crypto/sha/sha1test.c
index 78c94f1aca..831a3441a4 100644
--- a/crypto/sha/sha1test.c
+++ b/crypto/sha/sha1test.c
@@ -59,7 +59,7 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
-#include "sha.h"
+#include <openssl/sha.h>
#undef SHA_0 /* FIPS 180 */
#define SHA_1 /* FIPS 180-1 */
diff --git a/crypto/sha/sha_dgst.c b/crypto/sha/sha_dgst.c
index 4b90479e8d..ebfbb53aee 100644
--- a/crypto/sha/sha_dgst.c
+++ b/crypto/sha/sha_dgst.c
@@ -60,9 +60,9 @@
#include <string.h>
#define SHA_0
#undef SHA_1
-#include "sha.h"
+#include <openssl/sha.h>
#include "sha_locl.h"
-#include "opensslv.h"
+#include <openssl/opensslv.h>
char *SHA_version="SHA" OPENSSL_VERSION_PTEXT;
diff --git a/crypto/sha/sha_one.c b/crypto/sha/sha_one.c
index 3e2751ec84..80b0697380 100644
--- a/crypto/sha/sha_one.c
+++ b/crypto/sha/sha_one.c
@@ -58,7 +58,7 @@
#include <stdio.h>
#include <string.h>
-#include "sha.h"
+#include <openssl/sha.h>
unsigned char *SHA(unsigned char *d, unsigned long n, unsigned char *md)
{
diff --git a/crypto/sha/shatest.c b/crypto/sha/shatest.c
index 5a1a99880f..9224e88dd8 100644
--- a/crypto/sha/shatest.c
+++ b/crypto/sha/shatest.c
@@ -59,7 +59,7 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
-#include "sha.h"
+#include <openssl/sha.h>
#define SHA_0 /* FIPS 180 */
#undef SHA_1 /* FIPS 180-1 */