blowfish-mktab.c: Remove the eye-candy progress meter.
[u/mdw/catacomb] / pgen.h
diff --git a/pgen.h b/pgen.h
index 52e62bb..a066e28 100644 (file)
--- a/pgen.h
+++ b/pgen.h
@@ -7,7 +7,7 @@
  * (c) 1999 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of Catacomb.
  *
  * it under the terms of the GNU Library General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * License, or (at your option) any later version.
- * 
+ *
  * Catacomb is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Library General Public
  * License along with Catacomb; if not, write to the Free
  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
@@ -189,7 +189,7 @@ typedef struct pgen_simulctx {
   unsigned n;                          /* Size of the vector */
   mp *step;                            /* Basic stepping value */
 } pgen_simulctx;
-  
+
 /* --- @pgen_simulstep@ --- *
  *
  * Step a collection of numbers simultaneously.
@@ -204,45 +204,6 @@ extern pgen_proc pgen_simulstep;
 
 extern pgen_proc pgen_simultest;
 
-/*----- Safe prime functions ----------------------------------------------*/
-
-/* --- @pgen_safestep@ --- *
- *
- * Steps two numbers, %$q$% and %$p = 2q + 1$%, such that neither has any
- * small factors.  %$p$% is put in the event block.
- */
-
-typedef struct pgen_safestepctx {
-  pfilt q, p;
-} pgen_safestepctx;
-
-extern pgen_proc pgen_safestep;
-
-/* --- @pgen_safejump@ --- *
- *
- * Jumps two numbers, %$q$% and %$p = 2q + 1$% such that neither has any
- * small factors.
- */
-
-typedef struct pgen_safejumpctx {
-  pfilt q, jq;
-  pfilt p, jp;
-} pgen_safejumpctx;
-
-extern pgen_proc pgen_safejump;
-
-/* --- @pgen_safetest@ --- *
- *
- * Applies Rabin-Miller tests to %$p$% and %$(p - 1)/2$%.
- */
-
-typedef struct pgen_safetestctx {
-  pgen_safestepctx c;
-  rabin q, p;
-} pgen_safetestctx;
-
-extern pgen_proc pgen_safetest;
-
 /*----- Miscellaneous steppers and testers --------------------------------*/
 
 typedef struct pgen_gcdstepctx {