aboutsummaryrefslogtreecommitdiffstats
path: root/demos
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 /demos
parent806115771c7a056756cb5f93bb3aaa71cd418e49 (diff)
downloadopenssl-ec577822f95a8bca0023c5c77cef1a4916822d4a.tar.gz
Change #include filenames from <foo.h> to <openssl.h>.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'demos')
-rw-r--r--demos/b64.c12
-rw-r--r--demos/bio/saccept.c4
-rw-r--r--demos/bio/sconnect.c4
-rw-r--r--demos/eay/base64.c4
-rw-r--r--demos/eay/conn.c4
-rw-r--r--demos/eay/loadrsa.c2
-rw-r--r--demos/maurice/example1.c14
-rw-r--r--demos/maurice/example2.c14
-rw-r--r--demos/maurice/loadkeys.c14
-rw-r--r--demos/maurice/loadkeys.h2
-rw-r--r--demos/prime/prime.c2
-rw-r--r--demos/selfsign.c14
-rw-r--r--demos/sign/sign.c14
-rw-r--r--demos/spkigen.c12
14 files changed, 58 insertions, 58 deletions
diff --git a/demos/b64.c b/demos/b64.c
index 42abc42d33..725c78db21 100644
--- a/demos/b64.c
+++ b/demos/b64.c
@@ -60,12 +60,12 @@
#include <stdlib.h>
#include <string.h>
#include "apps.h"
-#include "buffer.h"
-#include "err.h"
-#include "evp.h"
-#include "objects.h"
-#include "x509.h"
-#include "pem.h"
+#include <openssl/buffer.h>
+#include <openssl/err.h>
+#include <openssl/evp.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
+#include <openssl/pem.h>
#undef SIZE
#undef BSIZE
diff --git a/demos/bio/saccept.c b/demos/bio/saccept.c
index 920eab397c..2f2dc985fe 100644
--- a/demos/bio/saccept.c
+++ b/demos/bio/saccept.c
@@ -12,8 +12,8 @@
#include <stdio.h>
#include <signal.h>
-#include "err.h"
-#include "ssl.h"
+#include <openssl/err.h>
+#include <openssl/ssl.h>
#define CERT_FILE "server.pem"
diff --git a/demos/bio/sconnect.c b/demos/bio/sconnect.c
index 68296da806..8fb6302b94 100644
--- a/demos/bio/sconnect.c
+++ b/demos/bio/sconnect.c
@@ -9,8 +9,8 @@
*/
#include <stdio.h>
#include <stdlib.h>
-#include "err.h"
-#include "ssl.h"
+#include <openssl/err.h>
+#include <openssl/ssl.h>
extern int errno;
diff --git a/demos/eay/base64.c b/demos/eay/base64.c
index de080f617a..4b8b0627d1 100644
--- a/demos/eay/base64.c
+++ b/demos/eay/base64.c
@@ -2,8 +2,8 @@
* getting the data.
*/
#include <stdio.h>
-#include "bio.h"
-#include "evp.h"
+#include <openssl/bio.h>
+#include <openssl/evp.h>
main()
{
diff --git a/demos/eay/conn.c b/demos/eay/conn.c
index f44fc7f536..ac121db278 100644
--- a/demos/eay/conn.c
+++ b/demos/eay/conn.c
@@ -7,8 +7,8 @@
*/
#include <stdio.h>
#include <stdlib.h>
-#include "err.h"
-#include "bio.h"
+#include <openssl/err.h>
+#include <openssl/bio.h>
#include "proxy.h"
extern int errno;
diff --git a/demos/eay/loadrsa.c b/demos/eay/loadrsa.c
index 91e62d74fe..79f1885ca4 100644
--- a/demos/eay/loadrsa.c
+++ b/demos/eay/loadrsa.c
@@ -1,5 +1,5 @@
#include <stdio.h>
-#include "rsa.h"
+#include <openssl/rsa.h>
/* This is a simple program to generate an RSA private key. It then
* saves both the public and private key into a char array, then
diff --git a/demos/maurice/example1.c b/demos/maurice/example1.c
index 77730d3232..0e70523a33 100644
--- a/demos/maurice/example1.c
+++ b/demos/maurice/example1.c
@@ -13,13 +13,13 @@
#include <strings.h>
#include <stdlib.h>
-#include "rsa.h"
-#include "evp.h"
-#include "objects.h"
-#include "x509.h"
-#include "err.h"
-#include "pem.h"
-#include "ssl.h"
+#include <openssl/rsa.h>
+#include <openssl/evp.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
+#include <openssl/err.h>
+#include <openssl/pem.h>
+#include <openssl/ssl.h>
#include "loadkeys.h"
diff --git a/demos/maurice/example2.c b/demos/maurice/example2.c
index 99f7b22440..06c325832e 100644
--- a/demos/maurice/example2.c
+++ b/demos/maurice/example2.c
@@ -10,13 +10,13 @@
#include <stdio.h>
#include <strings.h>
-#include "rsa.h"
-#include "evp.h"
-#include "objects.h"
-#include "x509.h"
-#include "err.h"
-#include "pem.h"
-#include "ssl.h"
+#include <openssl/rsa.h>
+#include <openssl/evp.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
+#include <openssl/err.h>
+#include <openssl/pem.h>
+#include <openssl/ssl.h>
#include "loadkeys.h"
diff --git a/demos/maurice/loadkeys.c b/demos/maurice/loadkeys.c
index 7c89f071f3..0f3464753a 100644
--- a/demos/maurice/loadkeys.c
+++ b/demos/maurice/loadkeys.c
@@ -14,13 +14,13 @@
#include <strings.h>
#include <stdlib.h>
-#include "rsa.h"
-#include "evp.h"
-#include "objects.h"
-#include "x509.h"
-#include "err.h"
-#include "pem.h"
-#include "ssl.h"
+#include <openssl/rsa.h>
+#include <openssl/evp.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
+#include <openssl/err.h>
+#include <openssl/pem.h>
+#include <openssl/ssl.h>
EVP_PKEY * ReadPublicKey(const char *certfile)
{
diff --git a/demos/maurice/loadkeys.h b/demos/maurice/loadkeys.h
index e42c6f8dc4..d8fde86eb7 100644
--- a/demos/maurice/loadkeys.h
+++ b/demos/maurice/loadkeys.h
@@ -10,7 +10,7 @@
#ifndef LOADKEYS_H_SEEN
#define LOADKEYS_H_SEEN
-#include "evp.h"
+#include <openssl/evp.h>
EVP_PKEY * ReadPublicKey(const char *certfile);
EVP_PKEY *ReadPrivateKey(const char *keyfile);
diff --git a/demos/prime/prime.c b/demos/prime/prime.c
index e4a17765bb..a1bf507b7c 100644
--- a/demos/prime/prime.c
+++ b/demos/prime/prime.c
@@ -57,7 +57,7 @@
*/
#include <stdio.h>
-#include "bn.h"
+#include <openssl/bn.h>
void callback(type,num)
int type,num;
diff --git a/demos/selfsign.c b/demos/selfsign.c
index 72146fc068..07711343a3 100644
--- a/demos/selfsign.c
+++ b/demos/selfsign.c
@@ -4,13 +4,13 @@
#include <stdio.h>
#include <stdlib.h>
-#include "buffer.h"
-#include "crypto.h"
-#include "objects.h"
-#include "asn1.h"
-#include "evp.h"
-#include "x509.h"
-#include "pem.h"
+#include <openssl/buffer.h>
+#include <openssl/crypto.h>
+#include <openssl/objects.h>
+#include <openssl/asn1.h>
+#include <openssl/evp.h>
+#include <openssl/x509.h>
+#include <openssl/pem.h>
int mkit(X509 **x509p, EVP_PKEY **pkeyp, int bits, int serial, int days);
diff --git a/demos/sign/sign.c b/demos/sign/sign.c
index 5cbce3cdc5..946c29c45e 100644
--- a/demos/sign/sign.c
+++ b/demos/sign/sign.c
@@ -62,13 +62,13 @@
/* converted to C - eay :-) */
#include <stdio.h>
-#include "rsa.h"
-#include "evp.h"
-#include "objects.h"
-#include "x509.h"
-#include "err.h"
-#include "pem.h"
-#include "ssl.h"
+#include <openssl/rsa.h>
+#include <openssl/evp.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
+#include <openssl/err.h>
+#include <openssl/pem.h>
+#include <openssl/ssl.h>
void main ()
{
diff --git a/demos/spkigen.c b/demos/spkigen.c
index 01fe6254f2..d87881197c 100644
--- a/demos/spkigen.c
+++ b/demos/spkigen.c
@@ -6,12 +6,12 @@
*/
#include <stdio.h>
#include <stdlib.h>
-#include "err.h"
-#include "asn1.h"
-#include "objects.h"
-#include "evp.h"
-#include "x509.h"
-#include "pem.h"
+#include <openssl/err.h>
+#include <openssl/asn1.h>
+#include <openssl/objects.h>
+#include <openssl/evp.h>
+#include <openssl/x509.h>
+#include <openssl/pem.h>
/* The following two don't exist in SSLeay but they are in here as
* examples */