summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto
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/crypto
parent2f6cfdc9b816d12b068e88ccfc907b17770f9e99 (diff)
downloadkrb5-53b1b612e91915358b3c80e7294faf0c6d2720bd.tar.gz
krb5-53b1b612e91915358b3c80e7294faf0c6d2720bd.tar.xz
krb5-53b1b612e91915358b3c80e7294faf0c6d2720bd.zip
Avoid <krb5/...> includes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5006 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto')
-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
12 files changed, 27 insertions, 10 deletions
diff --git a/src/lib/crypto/ChangeLog b/src/lib/crypto/ChangeLog
index be20248e02..0c17f78c59 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 f027b9438d..cd46f75e02 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 236cfb2070..119c9b3db6 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 ea82e07e23..4e1a7cfe3d 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 0b359867d0..35ef6e5144 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 e5ea22d558..907c5c34aa 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 05012168b8..0fdf17f15d 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 e1e6837c8b..35c518e56b 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 11d358918a..885bdb4265 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 264802a2e1..bb2fba5040 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 4e9d1e8f72..4514c895f7 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 760c2cccfd..9b642b7df1 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.