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/rc5 | |
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/rc5')
-rw-r--r-- | crypto/rc5/Makefile.ssl | 6 | ||||
-rw-r--r-- | crypto/rc5/rc5_ecb.c | 4 | ||||
-rw-r--r-- | crypto/rc5/rc5_enc.c | 2 | ||||
-rw-r--r-- | crypto/rc5/rc5_skey.c | 2 | ||||
-rw-r--r-- | crypto/rc5/rc5cfb64.c | 2 | ||||
-rw-r--r-- | crypto/rc5/rc5ofb64.c | 2 | ||||
-rw-r--r-- | crypto/rc5/rc5speed.c | 2 | ||||
-rw-r--r-- | crypto/rc5/rc5test.c | 2 |
8 files changed, 11 insertions, 11 deletions
diff --git a/crypto/rc5/Makefile.ssl b/crypto/rc5/Makefile.ssl index 68794f5059..45234e2046 100644 --- a/crypto/rc5/Makefile.ssl +++ b/crypto/rc5/Makefile.ssl @@ -71,15 +71,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/rc5/rc5_ecb.c b/crypto/rc5/rc5_ecb.c index 2305dd081b..17e877a146 100644 --- a/crypto/rc5/rc5_ecb.c +++ b/crypto/rc5/rc5_ecb.c @@ -56,9 +56,9 @@ * [including the GNU Public Licence.] */ -#include "rc5.h" +#include <openssl/rc5.h> #include "rc5_locl.h" -#include "opensslv.h" +#include <openssl/opensslv.h> char *RC5_version="RC5" OPENSSL_VERSION_PTEXT; diff --git a/crypto/rc5/rc5_enc.c b/crypto/rc5/rc5_enc.c index ba79dd456a..1124fd22eb 100644 --- a/crypto/rc5/rc5_enc.c +++ b/crypto/rc5/rc5_enc.c @@ -57,7 +57,7 @@ */ #include <stdio.h> -#include "rc5.h" +#include <openssl/rc5.h> #include "rc5_locl.h" void RC5_32_cbc_encrypt(unsigned char *in, unsigned char *out, long length, diff --git a/crypto/rc5/rc5_skey.c b/crypto/rc5/rc5_skey.c index 2f36531ffa..64e13487bf 100644 --- a/crypto/rc5/rc5_skey.c +++ b/crypto/rc5/rc5_skey.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "rc5.h" +#include <openssl/rc5.h> #include "rc5_locl.h" void RC5_32_set_key(RC5_32_KEY *key, int len, unsigned char *data, diff --git a/crypto/rc5/rc5cfb64.c b/crypto/rc5/rc5cfb64.c index dbc7ae105b..55e03087e2 100644 --- a/crypto/rc5/rc5cfb64.c +++ b/crypto/rc5/rc5cfb64.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "rc5.h" +#include <openssl/rc5.h> #include "rc5_locl.h" /* The input and output encrypted as though 64bit cfb mode is being diff --git a/crypto/rc5/rc5ofb64.c b/crypto/rc5/rc5ofb64.c index b52e14513f..fd2ecddf6c 100644 --- a/crypto/rc5/rc5ofb64.c +++ b/crypto/rc5/rc5ofb64.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "rc5.h" +#include <openssl/rc5.h> #include "rc5_locl.h" /* The input and output encrypted as though 64bit ofb mode is being diff --git a/crypto/rc5/rc5speed.c b/crypto/rc5/rc5speed.c index 54163b85e0..f7e23b703d 100644 --- a/crypto/rc5/rc5speed.c +++ b/crypto/rc5/rc5speed.c @@ -98,7 +98,7 @@ struct tms { #include <sys/param.h> #endif -#include "rc5.h" +#include <openssl/rc5.h> /* The following if from times(3) man page. It may need to be changed */ #ifndef HZ diff --git a/crypto/rc5/rc5test.c b/crypto/rc5/rc5test.c index 5ca5195053..d24da3c381 100644 --- a/crypto/rc5/rc5test.c +++ b/crypto/rc5/rc5test.c @@ -62,7 +62,7 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#include "rc5.h" +#include <openssl/rc5.h> unsigned char RC5key[5][16]={ {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, |