diff options
author | Bodo Möller <bodo@openssl.org> | 1999-04-23 22:13:45 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-04-23 22:13:45 +0000 |
commit | ec577822f95a8bca0023c5c77cef1a4916822d4a (patch) | |
tree | 206e75c0178ff0719b87a4d94e261fc243ce42a8 /crypto/idea | |
parent | 806115771c7a056756cb5f93bb3aaa71cd418e49 (diff) | |
download | openssl-new-ec577822f95a8bca0023c5c77cef1a4916822d4a.tar.gz |
Change #include filenames from <foo.h> to <openssl.h>.
Submitted by:
Reviewed by:
PR:
Diffstat (limited to 'crypto/idea')
-rw-r--r-- | crypto/idea/Makefile.ssl | 6 | ||||
-rw-r--r-- | crypto/idea/i_cbc.c | 2 | ||||
-rw-r--r-- | crypto/idea/i_cfb64.c | 2 | ||||
-rw-r--r-- | crypto/idea/i_ecb.c | 4 | ||||
-rw-r--r-- | crypto/idea/i_ofb64.c | 2 | ||||
-rw-r--r-- | crypto/idea/i_skey.c | 2 | ||||
-rw-r--r-- | crypto/idea/idea.h | 2 | ||||
-rw-r--r-- | crypto/idea/idea_spd.c | 2 | ||||
-rw-r--r-- | crypto/idea/ideatest.c | 2 |
9 files changed, 12 insertions, 12 deletions
diff --git a/crypto/idea/Makefile.ssl b/crypto/idea/Makefile.ssl index 8de0df0094..8492b842a2 100644 --- a/crypto/idea/Makefile.ssl +++ b/crypto/idea/Makefile.ssl @@ -45,15 +45,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/idea/i_cbc.c b/crypto/idea/i_cbc.c index 13b255e948..891a46532b 100644 --- a/crypto/idea/i_cbc.c +++ b/crypto/idea/i_cbc.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "idea.h" +#include <openssl/idea.h> #include "idea_lcl.h" void idea_cbc_encrypt(unsigned char *in, unsigned char *out, long length, diff --git a/crypto/idea/i_cfb64.c b/crypto/idea/i_cfb64.c index 8dda0fbe70..dacf3f1be3 100644 --- a/crypto/idea/i_cfb64.c +++ b/crypto/idea/i_cfb64.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "idea.h" +#include <openssl/idea.h> #include "idea_lcl.h" /* The input and output encrypted as though 64bit cfb mode is being diff --git a/crypto/idea/i_ecb.c b/crypto/idea/i_ecb.c index 9ebaf40913..93937d2063 100644 --- a/crypto/idea/i_ecb.c +++ b/crypto/idea/i_ecb.c @@ -56,9 +56,9 @@ * [including the GNU Public Licence.] */ -#include "idea.h" +#include <openssl/idea.h> #include "idea_lcl.h" -#include "opensslv.h" +#include <openssl/opensslv.h> const char *IDEA_version="IDEA" OPENSSL_VERSION_PTEXT; diff --git a/crypto/idea/i_ofb64.c b/crypto/idea/i_ofb64.c index cf60ff98e2..afcbed2d14 100644 --- a/crypto/idea/i_ofb64.c +++ b/crypto/idea/i_ofb64.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "idea.h" +#include <openssl/idea.h> #include "idea_lcl.h" /* The input and output encrypted as though 64bit ofb mode is being diff --git a/crypto/idea/i_skey.c b/crypto/idea/i_skey.c index 3733be0b60..87c63759a7 100644 --- a/crypto/idea/i_skey.c +++ b/crypto/idea/i_skey.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "idea.h" +#include <openssl/idea.h> #include "idea_lcl.h" #ifndef NOPROTO diff --git a/crypto/idea/idea.h b/crypto/idea/idea.h index 41ace440d8..c2f44d3c6e 100644 --- a/crypto/idea/idea.h +++ b/crypto/idea/idea.h @@ -66,7 +66,7 @@ extern "C" { #define IDEA_ENCRYPT 1 #define IDEA_DECRYPT 0 -#include "opensslconf.h" /* IDEA_INT */ +#include <openssl/opensslconf.h> /* IDEA_INT */ #define IDEA_BLOCK 8 #define IDEA_KEY_LENGTH 16 diff --git a/crypto/idea/idea_spd.c b/crypto/idea/idea_spd.c index 704538d41f..fb0bee51cb 100644 --- a/crypto/idea/idea_spd.c +++ b/crypto/idea/idea_spd.c @@ -98,7 +98,7 @@ struct tms { #include <sys/param.h> #endif -#include "idea.h" +#include <openssl/idea.h> /* The following if from times(3) man page. It may need to be changed */ #ifndef HZ diff --git a/crypto/idea/ideatest.c b/crypto/idea/ideatest.c index 542ece4aa3..220b422aa5 100644 --- a/crypto/idea/ideatest.c +++ b/crypto/idea/ideatest.c @@ -59,7 +59,7 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#include "idea.h" +#include <openssl/idea.h> unsigned char k[16]={ 0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x04, |