summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto/cryptoconf.c
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@toad.com>1995-01-26 04:00:41 +0000
committerJohn Gilmore <gnu@toad.com>1995-01-26 04:00:41 +0000
commitd777ce9b827d35851fc8389d1080ec9bf092a0e1 (patch)
tree5e38a4406f8992a960e122c4e02bfc5b5b29af73 /src/lib/crypto/cryptoconf.c
parentdd33bada5dc48f17a8fd78fa2cbd0e22e8d0fee3 (diff)
downloadkrb5-d777ce9b827d35851fc8389d1080ec9bf092a0e1.tar.gz
krb5-d777ce9b827d35851fc8389d1080ec9bf092a0e1.tar.xz
krb5-d777ce9b827d35851fc8389d1080ec9bf092a0e1.zip
* Makefile.in (CFLAGS): Add -I options to pick up include files
from the various algorithm subdirs. * cryptoconf.c, des-crc.c, des-md5.c, raw-des.c: Replace most <.../...> include files with "..." includes. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4846 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/cryptoconf.c')
-rw-r--r--src/lib/crypto/cryptoconf.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/lib/crypto/cryptoconf.c b/src/lib/crypto/cryptoconf.c
index a59cc31715..f027b9438d 100644
--- a/src/lib/crypto/cryptoconf.c
+++ b/src/lib/crypto/cryptoconf.c
@@ -24,20 +24,17 @@
* Cryptosystem configurations
*/
-
-#include <krb5/config.h>
-#include <krb5/osconf.h>
-#include <krb5/krb5.h>
+#include "k5-int.h"
#if defined(PROVIDE_DES_CBC_CRC) || defined(PROVIDE_CRC32)
-#include <krb5/crc-32.h>
+#include "crc-32.h"
#define CRC32_CKENTRY &crc32_cksumtable_entry
#else
#define CRC32_CKENTRY 0
#endif
#ifdef PROVIDE_RSA_MD4
-#include <krb5/rsa-md4.h>
+#include "rsa-md4.h"
#define MD4_CKENTRY &rsa_md4_cksumtable_entry
#define MD4_DES_CKENTRY &rsa_md4_des_cksumtable_entry
#else
@@ -61,7 +58,7 @@
#endif
#ifdef PROVIDE_DES_CBC_CKSUM
-#include <krb5/mit-des.h>
+#include "des_int.h"
#define _DES_DONE__
#define DES_CBC_CKENTRY &krb5_des_cbc_cksumtable_entry
#else
@@ -70,7 +67,7 @@
#ifdef PROVIDE_DES_CBC_CRC
#ifndef _DES_DONE__
-#include <krb5/mit-des.h>
+#include "des_int.h"
#define _DES_DONE__
#endif
#define DES_CBC_CRC_CSENTRY &krb5_des_crc_cst_entry
@@ -80,7 +77,7 @@
#ifdef PROVIDE_DES_CBC_MD5
#ifndef _DES_DONE__
-#include <krb5/mit-des.h>
+#include "des_int.h"
#define _DES_DONE__
#endif
#define DES_CBC_MD5_CSENTRY &krb5_des_md5_cst_entry
@@ -90,7 +87,7 @@
#ifdef PROVIDE_RAW_DES_CBC
#ifndef _DES_DONE__
-#include <krb5/mit-des.h>
+#include "des_int.h"
#define _DES_DONE__
#endif
#define RAW_DES_CBC_CSENTRY &krb5_raw_des_cst_entry