kerberize
authorJohn Kohl <jtkohl@mit.edu>
Tue, 26 Feb 1991 13:42:10 +0000 (13:42 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Tue, 26 Feb 1991 13:42:10 +0000 (13:42 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1785 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/md4/md4.c
src/lib/crypto/md4/md4driver.c

index feed466c4f572269cdd19fe8455a8bd63a6f5bb3..8b8bc8cbc2981e1e1c0340cea6178881c1a46eb1 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ *     $Source$
+ *     $Author$
+ *     $Id$
+ */
+
+#ifndef lint
+static char rcsid_md4_c[] = "$Id$";
+#endif lint
+
 /*
  **********************************************************************
  ** md4.c                                                            **
  **********************************************************************
  */
 
-#include "md4.h"
+#include <krb5/krb5.h>
+#include <krb5/rsa-md4.h>
 
 /* forward declaration */
+#ifdef __STDC__
+static void Transform (UINT4 *, UINT4 *);
+#else
 static void Transform ();
+#endif
 
 static unsigned char PADDING[64] = {
   0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
index 63020e6c33c11248c6779e3f3a5aaf309cc7edd8..e497ff49b40fcde4d329c0d15383b097d113e654 100644 (file)
@@ -1,3 +1,13 @@
+/*
+ *     $Source$
+ *     $Author$
+ *     $Id$
+ */
+
+#ifndef lint
+static char rcsid_md4driver_c[] = "$Id$";
+#endif lint
+
 /*
  **********************************************************************
  ** md4driver.c -- sample routines to test                           **
@@ -25,7 +35,8 @@
 #include <sys/types.h>
 #include <time.h>
 #include <string.h>
-#include "md4.h"
+#include <krb5/krb5.h>
+#include <krb5/rsa-md4.h>
 
 /* Prints message digest buffer in mdContext as 32 hexadecimal digits.
    Order is from low-order byte to high-order byte of digest.
@@ -108,7 +119,11 @@ char *inString;
 static void MDFile (filename)
 char *filename;
 {
+#ifdef __STDC__
   FILE *inFile = fopen (filename, "rb");
+#else
+  FILE *inFile = fopen (filename, "r");
+#endif
   MD4_CTX mdContext;
   int bytes;
   unsigned char data[1024];