aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@toad.com>1995-02-28 08:25:12 +0000
committerJohn Gilmore <gnu@toad.com>1995-02-28 08:25:12 +0000
commit53b1b612e91915358b3c80e7294faf0c6d2720bd (patch)
tree265b3e0b699f5ab9677450123ac08f48deb8b1e2 /src/lib
parent2f6cfdc9b816d12b068e88ccfc907b17770f9e99 (diff)
downloadkrb5-53b1b612e91915358b3c80e7294faf0c6d2720bd.zip
krb5-53b1b612e91915358b3c80e7294faf0c6d2720bd.tar.gz
krb5-53b1b612e91915358b3c80e7294faf0c6d2720bd.tar.bz2
Avoid <krb5/...> includes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5006 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/crypto/ChangeLog4
-rw-r--r--src/lib/crypto/cryptoconf.c4
-rw-r--r--src/lib/crypto/des/ChangeLog4
-rw-r--r--src/lib/crypto/des/des_int.h2
-rw-r--r--src/lib/crypto/des_md5.c2
-rw-r--r--src/lib/crypto/md4/ChangeLog4
-rw-r--r--src/lib/crypto/md4/rsa-md4.h4
-rw-r--r--src/lib/crypto/md5/ChangeLog5
-rw-r--r--src/lib/crypto/md5/md5.c2
-rw-r--r--src/lib/crypto/md5/md5crypto.c2
-rw-r--r--src/lib/crypto/md5/md5glue.c2
-rw-r--r--src/lib/crypto/md5/t_mddriver.c2
-rw-r--r--src/lib/krb425/425error.c2
-rw-r--r--src/lib/krb425/ChangeLog5
-rw-r--r--src/lib/krb425/kn_parse.c2
-rw-r--r--src/lib/krb425/krb425.h5
16 files changed, 35 insertions, 16 deletions
diff --git a/src/lib/crypto/ChangeLog b/src/lib/crypto/ChangeLog
index be20248..0c17f78 100644
--- a/src/lib/crypto/ChangeLog
+++ b/src/lib/crypto/ChangeLog
@@ -1,3 +1,7 @@
+Tue Feb 28 00:15:06 1995 John Gilmore (gnu at toad.com)
+
+ * cryptoconf.c, des_md5.c: Avoid <krb5/...> includes.
+
Fri Feb 3 02:44:07 1995 John Gilmore <gnu@cygnus.com>
Rename files so that they work in the DOS LIB command,
diff --git a/src/lib/crypto/cryptoconf.c b/src/lib/crypto/cryptoconf.c
index f027b94..cd46f75 100644
--- a/src/lib/crypto/cryptoconf.c
+++ b/src/lib/crypto/cryptoconf.c
@@ -43,7 +43,7 @@
#endif
#ifdef PROVIDE_RSA_MD5
-#include <krb5/rsa-md5.h>
+#include "rsa-md5.h"
#define MD5_CKENTRY &rsa_md5_cksumtable_entry
#define MD5_DES_CKENTRY &rsa_md5_des_cksumtable_entry
#else
@@ -98,7 +98,7 @@
/* WARNING:
make sure the order of entries in these tables matches the #defines in
- <krb5/encryption.h>
+ "krb5/encryption.h"
*/
krb5_cs_table_entry *krb5_csarray[] = {
diff --git a/src/lib/crypto/des/ChangeLog b/src/lib/crypto/des/ChangeLog
index 236cfb2..119c9b3 100644
--- a/src/lib/crypto/des/ChangeLog
+++ b/src/lib/crypto/des/ChangeLog
@@ -1,3 +1,7 @@
+Tue Feb 28 00:18:38 1995 John Gilmore (gnu at toad.com)
+
+ * des_int.h: Avoid <krb5/...> includes.
+
Mon Feb 20 16:10:29 1995 Keith Vetter (keithv@fusion.com)
* Makefile.in: made to work under windows PC
diff --git a/src/lib/crypto/des/des_int.h b/src/lib/crypto/des/des_int.h
index ea82e07..4e1a7cf 100644
--- a/src/lib/crypto/des/des_int.h
+++ b/src/lib/crypto/des/des_int.h
@@ -28,7 +28,7 @@
#ifndef DES_INTERNAL_DEFS
#define DES_INTERNAL_DEFS
-#include <krb5/mit-des.h>
+#include "mit-des.h" /* From include/krb5 */
/* cbc_cksum.c */
extern krb5_error_code INTERFACE mit_des_cbc_checksum
diff --git a/src/lib/crypto/des_md5.c b/src/lib/crypto/des_md5.c
index 0b35986..35ef6e5 100644
--- a/src/lib/crypto/des_md5.c
+++ b/src/lib/crypto/des_md5.c
@@ -22,7 +22,7 @@
*/
#include "k5-int.h"
-#include <krb5/rsa-md5.h>
+#include "rsa-md5.h"
#include "des_int.h"
krb5_error_code INTERFACE mit_des_md5_encrypt_func
diff --git a/src/lib/crypto/md4/ChangeLog b/src/lib/crypto/md4/ChangeLog
index e5ea22d..907c5c3 100644
--- a/src/lib/crypto/md4/ChangeLog
+++ b/src/lib/crypto/md4/ChangeLog
@@ -1,3 +1,7 @@
+Tue Feb 28 00:19:06 1995 John Gilmore (gnu at toad.com)
+
+ * rsa-md4.h: Avoid <krb5/...> includes.
+
Mon Feb 20 15:54:1 1995 Keith Vetter (keithv@fusion.com)
* Makefile.in: made to work for the PC
diff --git a/src/lib/crypto/md4/rsa-md4.h b/src/lib/crypto/md4/rsa-md4.h
index 0501216..0fdf17f 100644
--- a/src/lib/crypto/md4/rsa-md4.h
+++ b/src/lib/crypto/md4/rsa-md4.h
@@ -73,8 +73,8 @@ extern krb5_checksum_entry
**********************************************************************
*/
-#include <krb5/config.h>
-#include <krb5/wordsize.h>
+#include <k5-config.h>
+#include <wordsize.h>
/* Data structure for MD4 (Message Digest) computation */
typedef struct {
diff --git a/src/lib/crypto/md5/ChangeLog b/src/lib/crypto/md5/ChangeLog
index e1e6837..35c518e 100644
--- a/src/lib/crypto/md5/ChangeLog
+++ b/src/lib/crypto/md5/ChangeLog
@@ -1,3 +1,8 @@
+Tue Feb 28 00:20:15 1995 John Gilmore (gnu at toad.com)
+
+ * md5.c, md5crypto.c, md5glue.c, t_mddriver.c: Avoid <krb5/...>
+ includes.
+
Mon Feb 20 15:54:1 1995 Keith Vetter (keithv@fusion.com)
* Makefile.in: made to work for the PC
diff --git a/src/lib/crypto/md5/md5.c b/src/lib/crypto/md5/md5.c
index 11d3589..885bdb4 100644
--- a/src/lib/crypto/md5/md5.c
+++ b/src/lib/crypto/md5/md5.c
@@ -36,7 +36,7 @@
*/
#include "k5-int.h"
-#include <krb5/rsa-md5.h>
+#include "rsa-md5.h"
#ifdef __STDC__
#define UL(x) x##UL
diff --git a/src/lib/crypto/md5/md5crypto.c b/src/lib/crypto/md5/md5crypto.c
index 264802a..bb2fba5 100644
--- a/src/lib/crypto/md5/md5crypto.c
+++ b/src/lib/crypto/md5/md5crypto.c
@@ -1,5 +1,5 @@
#include "k5-int.h"
-#include <krb5/rsa-md5.h>
+#include "rsa-md5.h"
#include "des_int.h" /* we cheat a bit and call it directly... */
krb5_error_code INTERFACE
diff --git a/src/lib/crypto/md5/md5glue.c b/src/lib/crypto/md5/md5glue.c
index 4e9d1e8..4514c89 100644
--- a/src/lib/crypto/md5/md5glue.c
+++ b/src/lib/crypto/md5/md5glue.c
@@ -1,5 +1,5 @@
#include "k5-int.h"
-#include <krb5/rsa-md5.h>
+#include "rsa-md5.h"
krb5_error_code INTERFACE
md5_sum_func NPROTOTYPE((krb5_pointer in, size_t in_length,
diff --git a/src/lib/crypto/md5/t_mddriver.c b/src/lib/crypto/md5/t_mddriver.c
index 760c2cc..9b642b7 100644
--- a/src/lib/crypto/md5/t_mddriver.c
+++ b/src/lib/crypto/md5/t_mddriver.c
@@ -29,7 +29,7 @@ documentation and/or software.
#include "rsa-md4.h"
#endif
#if MD == 5
-#include <krb5/rsa-md5.h>
+#include "rsa-md5.h"
#endif
/* Length of test block, number of test blocks.
diff --git a/src/lib/krb425/425error.c b/src/lib/krb425/425error.c
index 1962602..02166bf 100644
--- a/src/lib/krb425/425error.c
+++ b/src/lib/krb425/425error.c
@@ -26,7 +26,7 @@
#include <krb.h>
-#include <krb5/krb5.h>
+#include "krb5.h"
int krb5_425_error; /* For people who want to know what */
/* the *real* error was.... */
diff --git a/src/lib/krb425/ChangeLog b/src/lib/krb425/ChangeLog
index 17f35c0..3716ef6 100644
--- a/src/lib/krb425/ChangeLog
+++ b/src/lib/krb425/ChangeLog
@@ -1,3 +1,8 @@
+Tue Feb 28 00:23:19 1995 John Gilmore (gnu at toad.com)
+
+ * cksum.c, des.c, des.h, enc_dec.c, pcbc_encrypt.c, quad_cksum.c,
+ read_passwd.c, string2key.c, weak_key.c: Avoid <krb5/...> includes.
+
Fri Sep 30 22:00:19 1994 Theodore Y. Ts'o (tytso@dcl)
* realmhost.c (krb_realmofhost): index->strchr
diff --git a/src/lib/krb425/kn_parse.c b/src/lib/krb425/kn_parse.c
index 51d5b2b..769d0b1 100644
--- a/src/lib/krb425/kn_parse.c
+++ b/src/lib/krb425/kn_parse.c
@@ -26,7 +26,7 @@
#include <stdio.h>
#include <krb.h>
-#include <krb5/osconf.h>
+#include "k5-int.h"
/* max size of full name */
#define FULL_SZ (ANAME_SZ + INST_SZ + REALM_SZ)
diff --git a/src/lib/krb425/krb425.h b/src/lib/krb425/krb425.h
index 064a643..03b9afa 100644
--- a/src/lib/krb425/krb425.h
+++ b/src/lib/krb425/krb425.h
@@ -31,12 +31,9 @@
#include <ctype.h>
#include <netdb.h>
#include <krb.h>
-#include <krb5/krb5.h>
-#include <krb5/los-proto.h>
-#include <krb5/asn1.h>
+#include "k5-int.h"
#include <netinet/in.h>
#include <stdio.h>
-#include <krb5/ext-proto.h>
#define min(a,b) ((a) < (b) ? (a) : (b))