Submitted by:
authorBodo Möller <bodo@openssl.org>
Fri, 23 Apr 1999 23:28:26 +0000 (23:28 +0000)
committerBodo Möller <bodo@openssl.org>
Fri, 23 Apr 1999 23:28:26 +0000 (23:28 +0000)
Reviewed by:
PR:

19 files changed:
crypto/bf/bfs.cpp
crypto/cast/casts.cpp
crypto/des/des3s.cpp
crypto/des/dess.cpp
crypto/md5/md5s.cpp
crypto/rc4/rc4s.cpp
crypto/rc5/rc5s.cpp
crypto/ripemd/asm/rips.cpp
crypto/sha/sha1s.cpp
demos/ssl/cli.cpp
demos/ssl/inetdsrv.cpp
demos/ssl/serv.cpp
times/x86/bfs.cpp
times/x86/casts.cpp
times/x86/des3s.cpp
times/x86/dess.cpp
times/x86/md5s.cpp
times/x86/rc4s.cpp
times/x86/sha1s.cpp

index 272ed2f9780fa1ec5e0ed448b8a47a5d08582762..d74c45776078b4904e06dac051b793fda91fd4aa 100644 (file)
@@ -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[])
        {
index bac7be2c9c19db6be2c546c51440f1a880018222..8d7bd468d2293afe0acdef77560650d53951ae28 100644 (file)
@@ -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[])
        {
index 9aff6494d98b12eeb9dbe0e0e589828801b56a7d..02d527c057c27c0554073601787ad4a1d572b54d 100644 (file)
@@ -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[])
        {
index 7fb598731429dbbd4d42565be874697e8b5789fe..753e67ad9be280a7670bf3a467bded532eae911e 100644 (file)
@@ -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[])
        {
index ef8e175df012c702388630eb6d6dee03dddf1115..dd343fd4e6edfd29b87219f80d57a500f89feb53 100644 (file)
@@ -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);
index 39f1727dd3f52dda15bef39936faed7d0316d86c..3814fde9972fcb3899a055509c85b79f0f0ebdaf 100644 (file)
@@ -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[])
        {
index b069601c226d5205cea2c9a7027669ce0a11e801..1c5518bc804551861446f6dcb3958a8b68d3978e 100644 (file)
@@ -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[])
        {
index 78a933c44835dd1ae70504c175f95e53b2e9b254..321a98443e5ed0346bbebd61a3f59591503cd3c4 100644 (file)
@@ -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);
index 0163377de69451307b540ad2569c9d03d52dc132..3103e1871bbed91ad2e9f04099d236ef321c6a50 100644 (file)
@@ -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);
index f52a9c025bb4f8cc8e6dfd05bfa42a35f825d98e..f15b7ad170f858e19f7195557fb57c339f03041c 100644 (file)
 #include <netdb.h>
 
 #include "rsa.h"       /* SSLeay stuff */
-#include "crypto.h"
-#include "x509.h"
-#include "pem.h"
-#include "ssl.h"
-#include "err.h"
+#include <openssl/crypto.h>
+#include <openssl/x509.h>
+#include <openssl/pem.h>
+#include <openssl/ssl.h>
+#include <openssl/err.h>
 
 #define CHK_NULL(x) if ((x)==NULL) exit (1)
 #define CHK_ERR(err,s) if ((err)==-1) { perror(s); exit(1); }
index b09c8b6e0bb90ab46c1847de9bf5513ed1f1021d..5b09227210693f6c8983c4b9857fa1405de66edc 100644 (file)
@@ -8,11 +8,11 @@
 #include <errno.h>
 
 #include "rsa.h"       /* SSLeay stuff */
-#include "crypto.h"
-#include "x509.h"
-#include "pem.h"
-#include "ssl.h"
-#include "err.h"
+#include <openssl/crypto.h>
+#include <openssl/x509.h>
+#include <openssl/pem.h>
+#include <openssl/ssl.h>
+#include <openssl/err.h>
 
 #define HOME "/usr/users/sampo/demo/"
 #define CERTF HOME "plain-cert.pem"
index 8681f2f22bff88f2cbd20ebb9daa35940c2b8b0a..feb6fdf7a6b29ce20f63caee9362e1c2529bdc75 100644 (file)
 #include <netdb.h>
 
 #include "rsa.h"       /* SSLeay stuff */
-#include "crypto.h"
-#include "x509.h"
-#include "pem.h"
-#include "ssl.h"
-#include "err.h"
+#include <openssl/crypto.h>
+#include <openssl/x509.h>
+#include <openssl/pem.h>
+#include <openssl/ssl.h>
+#include <openssl/err.h>
 
 #define HOME "/usr/users/sampo/sibs/tim/"
 #define CERTF HOME "plain-cert.pem"
index 272ed2f9780fa1ec5e0ed448b8a47a5d08582762..d74c45776078b4904e06dac051b793fda91fd4aa 100644 (file)
@@ -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[])
        {
index 7f524da57bfd804b7f6fda5376b87ef912000a48..7661191acf5ce02b64debf79622e01eeef8c03a3 100644 (file)
@@ -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[])
        {
index 9aff6494d98b12eeb9dbe0e0e589828801b56a7d..02d527c057c27c0554073601787ad4a1d572b54d 100644 (file)
@@ -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[])
        {
index 7fb598731429dbbd4d42565be874697e8b5789fe..753e67ad9be280a7670bf3a467bded532eae911e 100644 (file)
@@ -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[])
        {
index ef8e175df012c702388630eb6d6dee03dddf1115..dd343fd4e6edfd29b87219f80d57a500f89feb53 100644 (file)
@@ -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);
index 39f1727dd3f52dda15bef39936faed7d0316d86c..3814fde9972fcb3899a055509c85b79f0f0ebdaf 100644 (file)
@@ -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[])
        {
index 0163377de69451307b540ad2569c9d03d52dc132..3103e1871bbed91ad2e9f04099d236ef321c6a50 100644 (file)
@@ -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);