diff options
author | Bodo Möller <bodo@openssl.org> | 1999-04-24 00:13:45 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-04-24 00:13:45 +0200 |
commit | ec577822f95a8bca0023c5c77cef1a4916822d4a (patch) | |
tree | 206e75c0178ff0719b87a4d94e261fc243ce42a8 /crypto/dh | |
parent | *.org files are gone for good. (diff) | |
download | openssl-ec577822f95a8bca0023c5c77cef1a4916822d4a.tar.xz openssl-ec577822f95a8bca0023c5c77cef1a4916822d4a.zip |
Change #include filenames from <foo.h> to <openssl.h>.
Submitted by:
Reviewed by:
PR:
Diffstat (limited to 'crypto/dh')
-rw-r--r-- | crypto/dh/Makefile.ssl | 6 | ||||
-rw-r--r-- | crypto/dh/dh.h | 2 | ||||
-rw-r--r-- | crypto/dh/dh_check.c | 4 | ||||
-rw-r--r-- | crypto/dh/dh_err.c | 4 | ||||
-rw-r--r-- | crypto/dh/dh_gen.c | 4 | ||||
-rw-r--r-- | crypto/dh/dh_key.c | 6 | ||||
-rw-r--r-- | crypto/dh/dh_lib.c | 4 | ||||
-rw-r--r-- | crypto/dh/dhtest.c | 8 | ||||
-rw-r--r-- | crypto/dh/p1024.c | 8 | ||||
-rw-r--r-- | crypto/dh/p192.c | 8 | ||||
-rw-r--r-- | crypto/dh/p512.c | 8 |
11 files changed, 31 insertions, 31 deletions
diff --git a/crypto/dh/Makefile.ssl b/crypto/dh/Makefile.ssl index 20ef883a8d..514d552847 100644 --- a/crypto/dh/Makefile.ssl +++ b/crypto/dh/Makefile.ssl @@ -47,15 +47,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/dh/dh.h b/crypto/dh/dh.h index 5431725b8d..dc0df313ca 100644 --- a/crypto/dh/dh.h +++ b/crypto/dh/dh.h @@ -63,7 +63,7 @@ extern "C" { #endif -#include "bn.h" +#include <openssl/bn.h> #define DH_FLAG_CACHE_MONT_P 0x01 diff --git a/crypto/dh/dh_check.c b/crypto/dh/dh_check.c index e631f60718..95ce9cfad0 100644 --- a/crypto/dh/dh_check.c +++ b/crypto/dh/dh_check.c @@ -58,8 +58,8 @@ #include <stdio.h> #include "cryptlib.h" -#include "bn.h" -#include "dh.h" +#include <openssl/bn.h> +#include <openssl/dh.h> /* Check that p is a strong prime and * if g is 2, 3 or 5, check that is is a suitable generator diff --git a/crypto/dh/dh_err.c b/crypto/dh/dh_err.c index 5c1a129414..986fe6ce78 100644 --- a/crypto/dh/dh_err.c +++ b/crypto/dh/dh_err.c @@ -56,8 +56,8 @@ * [including the GNU Public Licence.] */ #include <stdio.h> -#include "err.h" -#include "dh.h" +#include <openssl/err.h> +#include <openssl/dh.h> /* BEGIN ERROR CODES */ #ifndef NO_ERR diff --git a/crypto/dh/dh_gen.c b/crypto/dh/dh_gen.c index fc577af05d..32237e8b95 100644 --- a/crypto/dh/dh_gen.c +++ b/crypto/dh/dh_gen.c @@ -58,8 +58,8 @@ #include <stdio.h> #include "cryptlib.h" -#include "bn.h" -#include "dh.h" +#include <openssl/bn.h> +#include <openssl/dh.h> /* We generate DH parameters as follows * find a prime q which is prime_len/2 bits long. diff --git a/crypto/dh/dh_key.c b/crypto/dh/dh_key.c index 25cc635e6d..cede53bfc1 100644 --- a/crypto/dh/dh_key.c +++ b/crypto/dh/dh_key.c @@ -58,9 +58,9 @@ #include <stdio.h> #include "cryptlib.h" -#include "bn.h" -#include "rand.h" -#include "dh.h" +#include <openssl/bn.h> +#include <openssl/rand.h> +#include <openssl/dh.h> int DH_generate_key(DH *dh) { diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c index 12b40cd1a4..61e0720e8a 100644 --- a/crypto/dh/dh_lib.c +++ b/crypto/dh/dh_lib.c @@ -58,8 +58,8 @@ #include <stdio.h> #include "cryptlib.h" -#include "bn.h" -#include "dh.h" +#include <openssl/bn.h> +#include <openssl/dh.h> const char *DH_version="Diffie-Hellman" OPENSSL_VERSION_PTEXT; diff --git a/crypto/dh/dhtest.c b/crypto/dh/dhtest.c index 249a2ecc09..24e361c3d7 100644 --- a/crypto/dh/dhtest.c +++ b/crypto/dh/dhtest.c @@ -62,10 +62,10 @@ #ifdef WINDOWS #include "../bio/bss_file.c" #endif -#include "crypto.h" -#include "bio.h" -#include "bn.h" -#include "dh.h" +#include <openssl/crypto.h> +#include <openssl/bio.h> +#include <openssl/bn.h> +#include <openssl/dh.h> #ifdef WIN16 #define MS_CALLBACK _far _loadds diff --git a/crypto/dh/p1024.c b/crypto/dh/p1024.c index 0c50c24cfb..368ceca4eb 100644 --- a/crypto/dh/p1024.c +++ b/crypto/dh/p1024.c @@ -57,10 +57,10 @@ */ #include <stdio.h> -#include "bn.h" -#include "asn1.h" -#include "dh.h" -#include "pem.h" +#include <openssl/bn.h> +#include <openssl/asn1.h> +#include <openssl/dh.h> +#include <openssl/pem.h> unsigned char data[]={0x97,0xF6,0x42,0x61,0xCA,0xB5,0x05,0xDD, 0x28,0x28,0xE1,0x3F,0x1D,0x68,0xB6,0xD3, diff --git a/crypto/dh/p192.c b/crypto/dh/p192.c index 881908169a..7bdf40410e 100644 --- a/crypto/dh/p192.c +++ b/crypto/dh/p192.c @@ -57,10 +57,10 @@ */ #include <stdio.h> -#include "bn.h" -#include "asn1.h" -#include "dh.h" -#include "pem.h" +#include <openssl/bn.h> +#include <openssl/asn1.h> +#include <openssl/dh.h> +#include <openssl/pem.h> unsigned char data[]={ 0xD4,0xA0,0xBA,0x02,0x50,0xB6,0xFD,0x2E, diff --git a/crypto/dh/p512.c b/crypto/dh/p512.c index cc84e8e50e..a9b6aa83f0 100644 --- a/crypto/dh/p512.c +++ b/crypto/dh/p512.c @@ -57,10 +57,10 @@ */ #include <stdio.h> -#include "bn.h" -#include "asn1.h" -#include "dh.h" -#include "pem.h" +#include <openssl/bn.h> +#include <openssl/asn1.h> +#include <openssl/dh.h> +#include <openssl/pem.h> unsigned char data[]={ 0xDA,0x58,0x3C,0x16,0xD9,0x85,0x22,0x89, |