Gather up another utility.
[u/mdw/catacomb] / pgen.h
CommitLineData
0f5ec153 1/* -*-c-*-
2 *
b817bfc6 3 * $Id: pgen.h,v 1.9 2004/04/08 01:36:15 mdw Exp $
0f5ec153 4 *
581c854e 5 * Prime generation glue
0f5ec153 6 *
7 * (c) 1999 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Catacomb.
13 *
14 * Catacomb is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
19 * Catacomb is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
25 * License along with Catacomb; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
28 */
29
b3f05084 30#ifndef CATACOMB_PGEN_H
31#define CATACOMB_PGEN_H
0f5ec153 32
33#ifdef __cplusplus
34 extern "C" {
35#endif
36
37/*----- Header files ------------------------------------------------------*/
38
581c854e 39#ifndef CATACOMB_GRAND_H
40# include "grand.h"
41#endif
42
b3f05084 43#ifndef CATACOMB_MP_H
0f5ec153 44# include "mp.h"
45#endif
46
581c854e 47#ifndef CATACOMB_PFILT_H
48# include "pfilt.h"
0f5ec153 49#endif
50
581c854e 51#ifndef CATACOMB_RABIN_H
52# include "rabin.h"
53#endif
0f5ec153 54
581c854e 55/*----- Event handling ----------------------------------------------------*
0f5ec153 56 *
581c854e 57 * Different programs and architectures will want to show progress of prime
58 * searches and similar processes in different ways. Of course, for simple
59 * searches, it's possible to use the @pfilt@ and @rabin@ functions and
60 * maintain control over the general control flow throughout the search.
0f5ec153 61 *
581c854e 62 * For more complex cases, this sort of control is undesirable. It's
63 * possible to specify an event handler which is informed in abstract about
64 * the search. The event handler can also request the search be aborted.
65 */
66
67/* --- Event code constants --- *
0f5ec153 68 *
581c854e 69 * You're allowed to rely on the values of @PGEN_DONE@ and @PGEN_ABORT@.
0f5ec153 70 */
71
581c854e 72enum {
73 PGEN_BEGIN = 1, /* Search for value begins */
74 PGEN_TRY, /* A new candidate has appeared */
75 PGEN_FAIL, /* The candidate failed the test */
76 PGEN_PASS, /* The candidate passed a test */
77 PGEN_DONE = 0, /* A good value has been found */
78 PGEN_ABORT = -1 /* The search has been aborted */
79};
0f5ec153 80
581c854e 81/* --- Event information --- *
0f5ec153 82 *
581c854e 83 * Note that the pseudorandom number generator supplied is not
84 * cryptographically strong.
0f5ec153 85 */
86
581c854e 87typedef struct pgen_event {
88 const char *name; /* Which quantity is being found */
89 mp *m; /* Current value under test */
90 unsigned steps; /* Number of candidates left */
91 unsigned tests; /* Tests left before passing */
92 grand *r; /* Source of random numbers */
93} pgen_event;
94
95/*----- Prime search parameters -------------------------------------------*
96 *
97 * The prime search is parameterized in a large number of ways, although this
98 * isn't so much of a surprise given the different sorts of properties
99 * required from prime numbers in cryptographic applications.
100 *
101 * There are two main things which need to be configured: stepping, and
102 * testing. (Filtering is done as part of stepping.)
103 *
104 * The functions here provide a toolkit for constructing stepping and testing
105 * routines. In a lot of cases, the functions can be used directly; in
106 * others, simple bits of glue need be written.
107 *
108 * Two types of functions are defined: steppers and testers, but their
109 * interfaces are substantially similar. Each is given a request code, a
110 * context block and an event block. It is meant to update its context and
111 * the event block and return an event code.
112 *
113 * A call with a request of @PGEN_BEGIN@ asks the stepper or tester to
114 * initialize itself using the information in its event block and context. A
115 * return of @PGEN_FAIL@ reports an immediate failure; @PGEN_ABORT@ reports a
116 * fatal problem; @PGEN_DONE@ reports immediate success. @PGEN_TRY@ reports
117 * successful initialization and requests test iterations.
118 *
119 * A call to a stepper with a request of @PGEN_TRY@ asks it to step to the
120 * next possible candidate, replacing the value @m@ in the event block with
121 * the new candidate. A call to a tester with a request of @PGEN_TRY@
122 * runs one pass of the test. It should return @PGEN_FAIL@ to report a
123 * failure, @PGEN_PASS@ to report a success and request another iteration,
124 * @PGEN_DONE@ to report final acceptance and @PGEN_ABORT@ to terminate the
125 * search unsuccessfully. Note that even if the search is aborted, a
126 * shutdown request is still made.
127 *
128 * A call with a request of @PGEN_DONE@ closes down the stepper or tester.
129 * After a successful initialization (i.e., a return of something other than
130 * @PGEN_ABORT@), a shutdown call is guaranteed. The return code is ignored.
131 */
0f5ec153 132
581c854e 133typedef int pgen_proc(int /*rq*/, pgen_event */*ev*/, void */*p*/);
134
135/*----- Simple handler functions ------------------------------------------*/
136
137/* --- @pgen_filter@ --- *
0f5ec153 138 *
581c854e 139 * A prime generation context contains the information required for the
140 * simple prime filter and tester presented here.
141 */
142
143typedef struct pgen_filterctx {
144 unsigned step; /* Step size (set by client) */
145 pfilt f; /* The rapid prime filter */
146} pgen_filterctx;
147
148extern int pgen_filter(int /*rq*/, pgen_event */*ev*/, void */*p*/);
149
150/* --- @pgen_jump@ --- *
0f5ec153 151 *
581c854e 152 * Similar to the standard @pgen_filter@, but jumps in large steps rather
153 * than small ones.
0f5ec153 154 */
155
581c854e 156typedef struct pgen_jumpctx {
157 const pfilt *j;
158 pfilt f;
159} pgen_jumpctx;
160
161extern int pgen_jump(int /*rq*/, pgen_event */*ev*/, void */*p*/);
0f5ec153 162
581c854e 163/* --- @pgen_test@ --- *
bd98b2df 164 *
581c854e 165 * Runs the Rabin-Miller primality test. The context block is simply a
166 * @rabin@ context.
167 */
168
169extern int pgen_test(int /*rq*/, pgen_event */*ev*/, void */*p*/);
170
171/*----- Safe prime functions ----------------------------------------------*/
172
173/* --- @pgen_safestep@ --- *
bd98b2df 174 *
581c854e 175 * Steps two numbers, %$q$% and %$p = 2q + 1$%, such that neither has any
176 * small factors. %$p$% is put in the event block.
177 */
178
179typedef struct pgen_safestepctx {
180 pfilt q, p;
181} pgen_safestepctx;
182
183extern int pgen_safestep(int /*rq*/, pgen_event */*ev*/, void */*p*/);
184
052b36d0 185/* --- @pgen_safejump@ --- *
186 *
187 * Jumps two numbers, %$q$% and %$p = 2q + 1$% such that neither has any
188 * small factors.
189 */
190
191typedef struct pgen_safejumpctx {
192 pfilt q, jq;
193 pfilt p, jp;
194} pgen_safejumpctx;
195
196extern int pgen_safejump(int /*rq*/, pgen_event */*ev*/, void */*p*/);
197
581c854e 198/* --- @pgen_safetest@ --- *
bd98b2df 199 *
581c854e 200 * Applies Rabin-Miller tests to %$p$% and %$(p - 1)/2$%.
201 */
202
203typedef struct pgen_safetestctx {
204 pgen_safestepctx c;
205 rabin q, p;
206} pgen_safetestctx;
207
208extern int pgen_safetest(int /*rq*/, pgen_event */*ev*/, void */*p*/);
209
f39a39c9 210/*----- Miscellaneous steppers and testers --------------------------------*/
211
212typedef struct pgen_gcdstepctx {
213 pfilt p, jp; /* Prime filter and step filter */
214 mp *q, *jq; /* %$p - 1$%, and a step value*/
215 mp *r; /* Other argument for GCD */
216 mp *g; /* GCD output (must be inited) */
217 mp *max; /* Maximum permissible GCD */
218} pgen_gcdstepctx;
219
220/* --- @pgen_gcdstep@ --- *
221 *
222 * Steps @p@ and @q@, until @p@ has no small factors, and
223 * %$\gcd(p, r) \le max$%.
224 */
225
226extern int pgen_gcdstep(int /*rq*/, pgen_event */*ev*/, void */*p*/);
227
581c854e 228/*----- Standard event handlers -------------------------------------------*/
229
230/* --- @pgen_evspin@ --- *
bd98b2df 231 *
581c854e 232 * Displays a spinning baton to show progress.
bd98b2df 233 */
234
581c854e 235extern int pgen_evspin(int /*rq*/, pgen_event */*ev*/, void */*p*/);
bd98b2df 236
581c854e 237/* --- @pgen_ev@ --- *
0f5ec153 238 *
581c854e 239 * Traditional event handler, shows dots for each test.
240 */
241
242extern int pgen_ev(int /*rq*/, pgen_event */*ev*/, void */*p*/);
243
df0292de 244/* --- @pgen_subev@ --- *
245 *
246 * Subsidiary event handler, mainly for Lim-Lee searches and so on.
247 */
248
249extern int pgen_subev(int /*rq*/, pgen_event */*ev*/, void */*p*/);
250
581c854e 251/*----- The main driver ---------------------------------------------------*/
252
253/* --- @pgen@ --- *
0f5ec153 254 *
581c854e 255 * Arguments: @const char *name@ = name of the value being searched for
256 * @mp *d@ = destination for resulting integer
257 * @mp *m@ = start value to pass to stepper
258 * @pgen_proc *event@ = event handler function
259 * @void *ectx@ = context argument for event andler
260 * @unsigned steps@ = number of steps to take in search
261 * @pgen_proc *step@ = stepper function to use
262 * @void *sctx@ = context argument for stepper
263 * @unsigned tests@ = number of tests to make
264 * @pgen_proc *test@ = tester function to use
265 * @void *tctx@ = context argument for tester
0f5ec153 266 *
581c854e 267 * Returns: If successful, @PGEN_DONE@; otherwise @PGEN_ABORT@.
0f5ec153 268 *
581c854e 269 * Use: A generalized prime-number search skeleton. Yes, that's a
270 * scary number of arguments.
0f5ec153 271 */
272
581c854e 273extern mp *pgen(const char */*name*/, mp */*d*/, mp */*m*/,
274 pgen_proc */*event*/, void */*ectx*/,
275 unsigned /*steps*/, pgen_proc */*step*/, void */*sctx*/,
276 unsigned /*tests*/, pgen_proc */*test*/, void */*tctx*/);
0f5ec153 277
34e4f738 278/* --- @pgen_primep@ --- *
279 *
280 * Arguments: @mp *p@ = a number to check
281 * @grand *gr@ = a random number source
282 *
283 * Returns: Nonzero if @p@ is really prime.
284 */
285
286extern int pgen_primep(mp */*p*/, grand */*gr*/);
287
0f5ec153 288/*----- That's all, folks -------------------------------------------------*/
289
290#ifdef __cplusplus
291 }
292#endif
293
294#endif