Expunge revision histories in files.
[u/mdw/catacomb] / strongprime.c
index cf2ca73..c1b43f4 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: strongprime.c,v 1.3 2000/06/17 12:10:09 mdw Exp $
+ * $Id: strongprime.c,v 1.5 2004/04/08 01:36:15 mdw Exp $
  *
  * Generate `strong' prime numbers
  *
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: strongprime.c,v $
- * Revision 1.3  2000/06/17 12:10:09  mdw
- * Add some argument checking.  Use MP secure memory interface.
- *
- * Revision 1.2  2000/02/12 18:21:03  mdw
- * Overhaul of key management (again).
- *
- * Revision 1.1  1999/12/22 15:51:22  mdw
- * Find `strong' RSA primes using Gordon's algorithm.
- *
- */
-
 /*----- Header files ------------------------------------------------------*/
 
 #include <mLib/dstr.h>
@@ -160,12 +146,6 @@ mp *strongprime_setup(const char *name, mp *d, pfilt *f, unsigned nbits,
 
   /* --- Return the result --- */
 
-#if 0
-fputs("r = ", stdout); mp_writefile(q, stdout, 10); putchar('\n');
-fputs("s = ", stdout); mp_writefile(s, stdout, 10); putchar('\n');
-fputs("t = ", stdout); mp_writefile(t, stdout, 10); putchar('\n');
-#endif
-
   mp_drop(q);
   mp_drop(t);
   mp_drop(s);