summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto
diff options
context:
space:
mode:
authorMark Eichin <eichin@mit.edu>1994-08-18 22:08:45 +0000
committerMark Eichin <eichin@mit.edu>1994-08-18 22:08:45 +0000
commit814b335233e2974e81dfede664dcf7d12299dcc4 (patch)
treeede6edb73f06e930446c558bf5378ea7b21e9a0d /src/lib/crypto
parent78d731d66381bbde6e2282e11e80b8199c60865d (diff)
stamp out rcs keywords
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4191 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto')
-rw-r--r--src/lib/crypto/crc32/crc.c7
-rw-r--r--src/lib/crypto/crc32/crctest.c7
-rw-r--r--src/lib/crypto/cryptoconf.c7
-rw-r--r--src/lib/crypto/des/cbc_cksum.c7
-rw-r--r--src/lib/crypto/des/cksum.c7
-rw-r--r--src/lib/crypto/des/cs_entry.c7
-rw-r--r--src/lib/crypto/des/des.c7
-rw-r--r--src/lib/crypto/des/des_int.h4
-rw-r--r--src/lib/crypto/des/destest.c7
-rw-r--r--src/lib/crypto/des/enc_dec.c7
-rw-r--r--src/lib/crypto/des/f_parity.c4
-rw-r--r--src/lib/crypto/des/fin_rndkey.c7
-rw-r--r--src/lib/crypto/des/finish_key.c7
-rw-r--r--src/lib/crypto/des/init_rkey.c7
-rw-r--r--src/lib/crypto/des/key_parity.c7
-rw-r--r--src/lib/crypto/des/key_sched.c7
-rw-r--r--src/lib/crypto/des/krb_glue.c7
-rw-r--r--src/lib/crypto/des/make_e.c7
-rw-r--r--src/lib/crypto/des/make_fp.c7
-rw-r--r--src/lib/crypto/des/make_ip.c7
-rw-r--r--src/lib/crypto/des/make_kp.c8
-rw-r--r--src/lib/crypto/des/make_odd.c7
-rw-r--r--src/lib/crypto/des/make_p.c7
-rw-r--r--src/lib/crypto/des/make_pt.c7
-rw-r--r--src/lib/crypto/des/make_s.c7
-rw-r--r--src/lib/crypto/des/make_st.c7
-rw-r--r--src/lib/crypto/des/misc.c7
-rw-r--r--src/lib/crypto/des/new_rn_key.c7
-rw-r--r--src/lib/crypto/des/process_ky.c7
-rw-r--r--src/lib/crypto/des/random_key.c7
-rw-r--r--src/lib/crypto/des/string2key.c7
-rw-r--r--src/lib/crypto/des/tables.h4
-rw-r--r--src/lib/crypto/des/verify.c7
-rw-r--r--src/lib/crypto/des/weak_key.c7
-rw-r--r--src/lib/crypto/md4/md4.c8
-rw-r--r--src/lib/crypto/md4/md4crypto.c7
-rw-r--r--src/lib/crypto/md4/md4driver.c8
-rw-r--r--src/lib/crypto/md4/md4glue.c7
-rw-r--r--src/lib/crypto/md5/md5crypto.c4
-rw-r--r--src/lib/crypto/md5/md5glue.c4
-rw-r--r--src/lib/crypto/os/rnd_confoun.c7
41 files changed, 38 insertions, 237 deletions
diff --git a/src/lib/crypto/crc32/crc.c b/src/lib/crypto/crc32/crc.c
index c25d09035..c2775cd7b 100644
--- a/src/lib/crypto/crc32/crc.c
+++ b/src/lib/crypto/crc32/crc.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/crc32/crc.c
*
* Copyright 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* CRC-32/AUTODIN-II routines
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_crc_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/crc-32.h>
diff --git a/src/lib/crypto/crc32/crctest.c b/src/lib/crypto/crc32/crctest.c
index a4c7a23fc..cacfa2171 100644
--- a/src/lib/crypto/crc32/crctest.c
+++ b/src/lib/crypto/crc32/crctest.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/crc32/crctest.c
*
* Copyright 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* CRC test driver program.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_crctest_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/crc-32.h>
diff --git a/src/lib/crypto/cryptoconf.c b/src/lib/crypto/cryptoconf.c
index c25aac555..3af3f31f2 100644
--- a/src/lib/crypto/cryptoconf.c
+++ b/src/lib/crypto/cryptoconf.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/cryptoconf.c
*
* Copyright 1990,1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* Cryptosystem configurations
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_cryptoconf_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/config.h>
#include <krb5/osconf.h>
diff --git a/src/lib/crypto/des/cbc_cksum.c b/src/lib/crypto/des/cbc_cksum.c
index 2458f3cc9..73254dac5 100644
--- a/src/lib/crypto/des/cbc_cksum.c
+++ b/src/lib/crypto/des/cbc_cksum.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/cbc_cksum.c
*
* Copyright 1985, 1986, 1987, 1988, 1990 by the Massachusetts Institute
* of Technology.
@@ -30,10 +29,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_cbc_cksum_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
diff --git a/src/lib/crypto/des/cksum.c b/src/lib/crypto/des/cksum.c
index 35aa623e6..b92f490e3 100644
--- a/src/lib/crypto/des/cksum.c
+++ b/src/lib/crypto/des/cksum.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/cksum.c
*
* Copyright 1985, 1986, 1987, 1988, 1990 by the Massachusetts Institute
* of Technology.
@@ -35,10 +34,6 @@
* spm 8/85 MIT project athena
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_cksum_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/des/cs_entry.c b/src/lib/crypto/des/cs_entry.c
index 21a01708d..e17f0f8bd 100644
--- a/src/lib/crypto/des/cs_entry.c
+++ b/src/lib/crypto/des/cs_entry.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/cs_entry.c
*
* Copyright 1990,1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* DES encryption interface file
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_cs_entry_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
diff --git a/src/lib/crypto/des/des.c b/src/lib/crypto/des/des.c
index a21000064..af04eb195 100644
--- a/src/lib/crypto/des/des.c
+++ b/src/lib/crypto/des/des.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/des.c
*
* Copyright 1985, 1986, 1987, 1988, 1990 by the Massachusetts Institute
* of Technology.
@@ -49,10 +48,6 @@
* originally written by Steve Miller, MIT Project Athena
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_des_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
diff --git a/src/lib/crypto/des/des_int.h b/src/lib/crypto/des/des_int.h
index 5ad058633..37be4aa45 100644
--- a/src/lib/crypto/des/des_int.h
+++ b/src/lib/crypto/des/des_int.h
@@ -1,7 +1,5 @@
/*
- * $Source$
- * $Author$
- * $Id$
+ * lib/crypto/des/des_int.h
*
* Copyright 1987, 1988, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
diff --git a/src/lib/crypto/des/destest.c b/src/lib/crypto/des/destest.c
index e9cc1505f..a3824be66 100644
--- a/src/lib/crypto/des/destest.c
+++ b/src/lib/crypto/des/destest.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/destest.c
*
* Copyright 1990,1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* Test a DES implementation against known inputs & outputs
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_destest_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
/*
* -DBSD_DES will test the BSD DES library.
diff --git a/src/lib/crypto/des/enc_dec.c b/src/lib/crypto/des/enc_dec.c
index e0b0f8e36..8b8c1a227 100644
--- a/src/lib/crypto/des/enc_dec.c
+++ b/src/lib/crypto/des/enc_dec.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/enc_dec.c
*
* Copyright 1985, 1986, 1987, 1988, 1990 by the Massachusetts Institute
* of Technology.
@@ -36,10 +35,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_enc_dec_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
diff --git a/src/lib/crypto/des/f_parity.c b/src/lib/crypto/des/f_parity.c
index 887c71242..7244482d7 100644
--- a/src/lib/crypto/des/f_parity.c
+++ b/src/lib/crypto/des/f_parity.c
@@ -8,10 +8,6 @@
* Mark Eichin -- Cygnus Support
*/
-#ifndef lint
-static char rcsid_f_parity_c[] =
-"$Header$";
-#endif
#include "des.h"
diff --git a/src/lib/crypto/des/fin_rndkey.c b/src/lib/crypto/des/fin_rndkey.c
index 14758851e..cbd562191 100644
--- a/src/lib/crypto/des/fin_rndkey.c
+++ b/src/lib/crypto/des/fin_rndkey.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/fin_rndkey.c
*
* Copyright 1990,1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -24,10 +23,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_fin_rndkey_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/mit-des.h>
diff --git a/src/lib/crypto/des/finish_key.c b/src/lib/crypto/des/finish_key.c
index bf0e4ca6b..adbe18cc7 100644
--- a/src/lib/crypto/des/finish_key.c
+++ b/src/lib/crypto/des/finish_key.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/finish_key.c
*
* Copyright 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -24,10 +23,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_finish_key_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/des/init_rkey.c b/src/lib/crypto/des/init_rkey.c
index a5b3c7656..ae2708c59 100644
--- a/src/lib/crypto/des/init_rkey.c
+++ b/src/lib/crypto/des/init_rkey.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/init_rkey.c
*
* Copyright 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -24,10 +23,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_init_rkey_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/des/key_parity.c b/src/lib/crypto/des/key_parity.c
index 889f6d4d9..796b2e5f4 100644
--- a/src/lib/crypto/des/key_parity.c
+++ b/src/lib/crypto/des/key_parity.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/key_parity.c
*
* Copyright 1989, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -32,10 +31,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_key_parity_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include "des_int.h"
diff --git a/src/lib/crypto/des/key_sched.c b/src/lib/crypto/des/key_sched.c
index 465bcdf29..66d72d9b6 100644
--- a/src/lib/crypto/des/key_sched.c
+++ b/src/lib/crypto/des/key_sched.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/key_sched.c
*
* Copyright 1985, 1986, 1987, 1988, 1990 by the Massachusetts Institute
* of Technology.
@@ -45,10 +44,6 @@
* Originally written 6/85 by Steve Miller, MIT Project Athena.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_key_sched_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <stdio.h>
diff --git a/src/lib/crypto/des/krb_glue.c b/src/lib/crypto/des/krb_glue.c
index 542bab63f..68ae1495a 100644
--- a/src/lib/crypto/des/krb_glue.c
+++ b/src/lib/crypto/des/krb_glue.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/krb_glue.c
*
* Copyright 1985, 1986, 1987, 1988, 1990, 1991 by the Massachusetts Institute
* of Technology.
@@ -42,10 +41,6 @@
* even no kerberos routines are called
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_enc_dec_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
diff --git a/src/lib/crypto/des/make_e.c b/src/lib/crypto/des/make_e.c
index 23d5e83e4..d519cc08b 100644
--- a/src/lib/crypto/des/make_e.c
+++ b/src/lib/crypto/des/make_e.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/make_e.c
*
* Copyright 1987, 1988, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -26,10 +25,6 @@
* operations of the DES.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_make_e_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <stdio.h>
diff --git a/src/lib/crypto/des/make_fp.c b/src/lib/crypto/des/make_fp.c
index 2dc0b387d..500ea8516 100644
--- a/src/lib/crypto/des/make_fp.c
+++ b/src/lib/crypto/des/make_fp.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/make_fp.c
*
* Copyright 1988, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -26,10 +25,6 @@
* implementing the final permutation of the DES.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_make_fp_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <stdio.h>
diff --git a/src/lib/crypto/des/make_ip.c b/src/lib/crypto/des/make_ip.c
index 83e1dbd71..5c0113f7e 100644
--- a/src/lib/crypto/des/make_ip.c
+++ b/src/lib/crypto/des/make_ip.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/make_ip.c
*
* Copyright 1987, 1988,1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -26,10 +25,6 @@
* permutation of the DES.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_make_ip_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <stdio.h>
diff --git a/src/lib/crypto/des/make_kp.c b/src/lib/crypto/des/make_kp.c
index 69e827a04..42cfe8c4d 100644
--- a/src/lib/crypto/des/make_kp.c
+++ b/src/lib/crypto/des/make_kp.c
@@ -1,7 +1,5 @@
/*
- * $Source$
- * $Author$
- * $Locker$
+ * lib/crypto/des/make_kp.c
*
* Copyright 1988,1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -35,10 +33,6 @@
#include <stdio.h>
#include "des_int.h"
-#ifndef lint
-static char rcsid_make_kp[]=
-"$Id$";
-#endif /* lint */
char *progname;
extern int errno;
diff --git a/src/lib/crypto/des/make_odd.c b/src/lib/crypto/des/make_odd.c
index 58ef7b16c..9405e8448 100644
--- a/src/lib/crypto/des/make_odd.c
+++ b/src/lib/crypto/des/make_odd.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/make_odd.c
*
* Copyright 1988,1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* This routine generates an odd-parity table for use in key generation.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_make_odd_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <stdio.h>
diff --git a/src/lib/crypto/des/make_p.c b/src/lib/crypto/des/make_p.c
index 09236e4d0..0446c9c6f 100644
--- a/src/lib/crypto/des/make_p.c
+++ b/src/lib/crypto/des/make_p.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/make_p.c
*
* Copyright 1985, 1988,1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* This routine generates the P permutation code for the DES.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_make_p_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <stdio.h>
diff --git a/src/lib/crypto/des/make_pt.c b/src/lib/crypto/des/make_pt.c
index d009c0ba0..804cb33a5 100644
--- a/src/lib/crypto/des/make_pt.c
+++ b/src/lib/crypto/des/make_pt.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/make_pt.c
*
* Copyright 1985, 1988, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -24,10 +23,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_make_pt_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <stdio.h>
diff --git a/src/lib/crypto/des/make_s.c b/src/lib/crypto/des/make_s.c
index b10cf84ed..4ae7ff24b 100644
--- a/src/lib/crypto/des/make_s.c
+++ b/src/lib/crypto/des/make_s.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/make_s.c
*
* Copyright 1985, 1988, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -23,10 +22,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_make_s_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
diff --git a/src/lib/crypto/des/make_st.c b/src/lib/crypto/des/make_st.c
index 3f9f9dbf0..9dcd08c9a 100644
--- a/src/lib/crypto/des/make_st.c
+++ b/src/lib/crypto/des/make_st.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/make_st.c
*
* Copyright 1985, 1988, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -23,10 +22,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_make_st_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <stdio.h>
diff --git a/src/lib/crypto/des/misc.c b/src/lib/crypto/des/misc.c
index 283720f4d..a4e595575 100644
--- a/src/lib/crypto/des/misc.c
+++ b/src/lib/crypto/des/misc.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/misc.c
*
* Copyright 1988, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -28,10 +27,6 @@
* generating the intermediate source files.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_misc_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/des/new_rn_key.c b/src/lib/crypto/des/new_rn_key.c
index 3a884cca5..6b322bd2b 100644
--- a/src/lib/crypto/des/new_rn_key.c
+++ b/src/lib/crypto/des/new_rn_key.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/new_rn_key.c
*
* Copyright 1988,1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -31,10 +30,6 @@
* without license from the U.S. Commerce department.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_new_rn_key_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/des/process_ky.c b/src/lib/crypto/des/process_ky.c
index 849f38796..78d224e7b 100644
--- a/src/lib/crypto/des/process_ky.c
+++ b/src/lib/crypto/des/process_ky.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/process_ky.c
*
* Copyright 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -24,10 +23,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_process_ky_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
diff --git a/src/lib/crypto/des/random_key.c b/src/lib/crypto/des/random_key.c
index 2c2f27745..48ad309e0 100644
--- a/src/lib/crypto/des/random_key.c
+++ b/src/lib/crypto/des/random_key.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/random_key.c
*
* Copyright 1990,1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -24,10 +23,6 @@
*
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_random_key_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/des/string2key.c b/src/lib/crypto/des/string2key.c
index bba7331c5..c8ea2f924 100644
--- a/src/lib/crypto/des/string2key.c
+++ b/src/lib/crypto/des/string2key.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/string2key.c
*
* Copyright 1990,1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* Wrapper for the V4 libdes for use with kerberos V5.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_string2key_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/des/tables.h b/src/lib/crypto/des/tables.h
index 74435d63c..42bac36d2 100644
--- a/src/lib/crypto/des/tables.h
+++ b/src/lib/crypto/des/tables.h
@@ -1,7 +1,5 @@
/*
- * $Source$
- * $Author$
- * $Id$
+ * lib/crypto/des/tables.h
*
* Copyright 1988,1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
diff --git a/src/lib/crypto/des/verify.c b/src/lib/crypto/des/verify.c
index 3c2416433..b5ac9929b 100644
--- a/src/lib/crypto/des/verify.c
+++ b/src/lib/crypto/des/verify.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/verify.c
*
* Copyright 1988, 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -29,10 +28,6 @@
* -1 ==> error
*/
-#ifndef lint
-static char rcsid_verify_c[] =
-"$Id$";
-#endif /*lint*/
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/des/weak_key.c b/src/lib/crypto/des/weak_key.c
index 15ce2a847..d96caa5d4 100644
--- a/src/lib/crypto/des/weak_key.c
+++ b/src/lib/crypto/des/weak_key.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/des/weak_key.c
*
* Copyright 1989,1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -30,10 +29,6 @@
* Originally written 8/85 by Steve Miller, MIT Project Athena.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_weak_key_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/md4/md4.c b/src/lib/crypto/md4/md4.c
index 7c954c683..02fd554f3 100644
--- a/src/lib/crypto/md4/md4.c
+++ b/src/lib/crypto/md4/md4.c
@@ -1,13 +1,7 @@
/*
- * $Source$
- * $Author$
- * $Id$
+ * lib/crypto/md4/md4.c
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_md4_c[] = "$Id$";
-#endif /* !lint & !SABER */
-
/*
**********************************************************************
** md4.c **
diff --git a/src/lib/crypto/md4/md4crypto.c b/src/lib/crypto/md4/md4crypto.c
index abd27fe64..b0feb779b 100644
--- a/src/lib/crypto/md4/md4crypto.c
+++ b/src/lib/crypto/md4/md4crypto.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/md4/md4crypto.c
*
* Copyright 1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* Kerberos glue for MD4 sample implementation.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_md4crypto_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/md4/md4driver.c b/src/lib/crypto/md4/md4driver.c
index 21ab15439..7fded0b23 100644
--- a/src/lib/crypto/md4/md4driver.c
+++ b/src/lib/crypto/md4/md4driver.c
@@ -1,13 +1,7 @@
/*
- * $Source$
- * $Author$
- * $Id$
+ * lib/crypto/md4/md4driver.c
*/
-#ifndef lint
-static char rcsid_md4driver_c[] = "$Id$";
-#endif /* lint */
-
/*
**********************************************************************
** md4driver.c -- sample routines to test **
diff --git a/src/lib/crypto/md4/md4glue.c b/src/lib/crypto/md4/md4glue.c
index fe34794e3..457dbea65 100644
--- a/src/lib/crypto/md4/md4glue.c
+++ b/src/lib/crypto/md4/md4glue.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/md4/md4glue.c
*
* Copyright 1990,1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* Kerberos glue for MD4 sample implementation.
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_md4glue_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
diff --git a/src/lib/crypto/md5/md5crypto.c b/src/lib/crypto/md5/md5crypto.c
index 9dcb8694e..49cd005cb 100644
--- a/src/lib/crypto/md5/md5crypto.c
+++ b/src/lib/crypto/md5/md5crypto.c
@@ -1,7 +1,3 @@
-#if !defined(lint) && !defined(SABER)
-static char rcsid_md5crypto_c[] = "$Id$";
-#endif
-
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
#include <krb5/rsa-md5.h>
diff --git a/src/lib/crypto/md5/md5glue.c b/src/lib/crypto/md5/md5glue.c
index a5453570a..97512b2e1 100644
--- a/src/lib/crypto/md5/md5glue.c
+++ b/src/lib/crypto/md5/md5glue.c
@@ -1,7 +1,3 @@
-#if !defined(lint) && !defined(SABER)
-static char rcsid_md5glue_c[] = "$Id$";
-#endif
-
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
#include <krb5/rsa-md5.h>
diff --git a/src/lib/crypto/os/rnd_confoun.c b/src/lib/crypto/os/rnd_confoun.c
index 5137af176..a086d5400 100644
--- a/src/lib/crypto/os/rnd_confoun.c
+++ b/src/lib/crypto/os/rnd_confoun.c
@@ -1,6 +1,5 @@
/*
- * $Source$
- * $Author$
+ * lib/crypto/os/rnd_confoun.c
*
* Copyright 1990 by the Massachusetts Institute of Technology.
* All Rights Reserved.
@@ -25,10 +24,6 @@
* krb5_random_confounder()
*/
-#if !defined(lint) && !defined(SABER)
-static char rcsid_rnd_counfoun_c[] =
-"$Id$";
-#endif /* !lint & !SABER */
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>