aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-23 23:28:26 +0000
committerBodo Möller <bodo@openssl.org>1999-04-23 23:28:26 +0000
commitdd3c43c5323d236a42efb1c7d6b509b927747953 (patch)
tree11b108f5f0533e36f40bb3a4d4ae88cdf1dd292f /crypto
parent09be75a48015c10864fa84a8b225655996f4e5db (diff)
downloadopenssl-dd3c43c5323d236a42efb1c7d6b509b927747953.tar.gz
Submitted by:
Reviewed by: PR:
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bf/bfs.cpp2
-rw-r--r--crypto/cast/casts.cpp2
-rw-r--r--crypto/des/des3s.cpp2
-rw-r--r--crypto/des/dess.cpp2
-rw-r--r--crypto/md5/md5s.cpp2
-rw-r--r--crypto/rc4/rc4s.cpp2
-rw-r--r--crypto/rc5/rc5s.cpp2
-rw-r--r--crypto/ripemd/asm/rips.cpp2
-rw-r--r--crypto/sha/sha1s.cpp2
9 files changed, 9 insertions, 9 deletions
diff --git a/crypto/bf/bfs.cpp b/crypto/bf/bfs.cpp
index 272ed2f978..d74c457760 100644
--- a/crypto/bf/bfs.cpp
+++ b/crypto/bf/bfs.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "blowfish.h"
+#include <openssl/blowfish.h>
void main(int argc,char *argv[])
{
diff --git a/crypto/cast/casts.cpp b/crypto/cast/casts.cpp
index bac7be2c9c..8d7bd468d2 100644
--- a/crypto/cast/casts.cpp
+++ b/crypto/cast/casts.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "cast.h"
+#include <openssl/cast.h>
void main(int argc,char *argv[])
{
diff --git a/crypto/des/des3s.cpp b/crypto/des/des3s.cpp
index 9aff6494d9..02d527c057 100644
--- a/crypto/des/des3s.cpp
+++ b/crypto/des/des3s.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "des.h"
+#include <openssl/des.h>
void main(int argc,char *argv[])
{
diff --git a/crypto/des/dess.cpp b/crypto/des/dess.cpp
index 7fb5987314..753e67ad9b 100644
--- a/crypto/des/dess.cpp
+++ b/crypto/des/dess.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "des.h"
+#include <openssl/des.h>
void main(int argc,char *argv[])
{
diff --git a/crypto/md5/md5s.cpp b/crypto/md5/md5s.cpp
index ef8e175df0..dd343fd4e6 100644
--- a/crypto/md5/md5s.cpp
+++ b/crypto/md5/md5s.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "md5.h"
+#include <openssl/md5.h>
extern "C" {
void md5_block_x86(MD5_CTX *ctx, unsigned char *buffer,int num);
diff --git a/crypto/rc4/rc4s.cpp b/crypto/rc4/rc4s.cpp
index 39f1727dd3..3814fde997 100644
--- a/crypto/rc4/rc4s.cpp
+++ b/crypto/rc4/rc4s.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "rc4.h"
+#include <openssl/rc4.h>
void main(int argc,char *argv[])
{
diff --git a/crypto/rc5/rc5s.cpp b/crypto/rc5/rc5s.cpp
index b069601c22..1c5518bc80 100644
--- a/crypto/rc5/rc5s.cpp
+++ b/crypto/rc5/rc5s.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "rc5.h"
+#include <openssl/rc5.h>
void main(int argc,char *argv[])
{
diff --git a/crypto/ripemd/asm/rips.cpp b/crypto/ripemd/asm/rips.cpp
index 78a933c448..321a98443e 100644
--- a/crypto/ripemd/asm/rips.cpp
+++ b/crypto/ripemd/asm/rips.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "ripemd.h"
+#include <openssl/ripemd.h>
extern "C" {
void ripemd160_block_x86(RIPEMD160_CTX *ctx, unsigned char *buffer,int num);
diff --git a/crypto/sha/sha1s.cpp b/crypto/sha/sha1s.cpp
index 0163377de6..3103e1871b 100644
--- a/crypto/sha/sha1s.cpp
+++ b/crypto/sha/sha1s.cpp
@@ -32,7 +32,7 @@ void GetTSC(unsigned long& tsc)
#include <stdio.h>
#include <stdlib.h>
-#include "sha.h"
+#include <openssl/sha.h>
extern "C" {
void sha1_block_x86(SHA_CTX *ctx, unsigned char *buffer,int num);