* preauth.h, rsa-md5.h: Protect against multiple inclusion
authorJohn Gilmore <gnu@toad.com>
Mon, 23 Jan 1995 02:21:48 +0000 (02:21 +0000)
committerJohn Gilmore <gnu@toad.com>
Mon, 23 Jan 1995 02:21:48 +0000 (02:21 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4832 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/ChangeLog
src/include/krb5/preauth.h
src/include/krb5/rsa-md5.h

index 2ae4419dbba4ad27184680a0e30bcbb440d1bc94..fd52961bc3b2cd76e2954c7cd3dd8dce45f23fe6 100644 (file)
@@ -1,3 +1,7 @@
+Sun Jan 22 18:17:06 1995  John Gilmore  (gnu@cygnus.com)
+
+       * preauth.h, rsa-md5.h:  Protect against multiple inclusion.
+
 Fri Jan 13 15:23:47 1995  Chris Provenzano (proven@mit.edu)
 
     * Added krb5_context to all krb5_routines
index cd59af748fe1795ef604852c329a94b29c646d21..a22e196b8f48eea6be0ba1ed222b17bd5b415de2 100644 (file)
@@ -3,7 +3,7 @@
  *
  * (Originally written by Glen Machin at Sandia Labs.)
  *
- * Copyright 1992 by the Massachusetts Institute of Technology.
+ * Copyright 1992, 1995 by the Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -27,6 +27,8 @@
  * any purpose.  It is provided "as is" without express or implied warranty.
  * 
  */
+#ifndef KRB5_PREAUTH__
+#define KRB5_PREAUTH__
 
 #define MAX_PREAUTH_SIZE 20    /* Maximum size of PreAuthenticator.data */
 
@@ -81,3 +83,4 @@ krb5_error_code verify_securid_padata
     PROTOTYPE((krb5_context, krb5_principal client, krb5_address **src_addr,
               krb5_data *data));
 
+#endif /* KRB5_PREAUTH__ */
index 7278183507ca3d3c36a96b3e840a4e2e73e5e1ff..ee180bf65cd11746d7104d31ae66c5bebc6c685c 100644 (file)
@@ -37,6 +37,9 @@
  ***********************************************************************
  */
 
+#ifndef        KRB5_RSA_MD5__
+#define        KRB5_RSA_MD5__
+
 /* Data structure for MD5 (Message-Digest) computation */
 typedef struct {
   krb5_ui_4 i[2];                      /* number of _bits_ handled mod 2^64 */
@@ -62,3 +65,4 @@ extern krb5_checksum_entry
     rsa_md5_cksumtable_entry,
     rsa_md5_des_cksumtable_entry;
 
+#endif /* KRB5_RSA_MD5__ */