pub/dh-kcdsa.c: Choose the starting point for the right result size.
[catacomb] / pub / dh-kcdsa.c
CommitLineData
4e67e30b
MW
1/* -*-c-*-
2 *
4e67e30b
MW
3 * Generate KCDSA prime groups
4 *
5 * (c) 2006 Straylight/Edgeware
6 */
7
45c0fd36 8/*----- Licensing notice --------------------------------------------------*
4e67e30b
MW
9 *
10 * This file is part of Catacomb.
11 *
12 * Catacomb is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
45c0fd36 16 *
4e67e30b
MW
17 * Catacomb is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
45c0fd36 21 *
4e67e30b
MW
22 * You should have received a copy of the GNU Library General Public
23 * License along with Catacomb; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
26 */
27
28/*----- Header files ------------------------------------------------------*/
29
30#include <mLib/macros.h>
31
32#include "dh.h"
33#include "mprand.h"
34#include "pgen.h"
35#include "prim.h"
36
37/*----- Main code ---------------------------------------------------------*/
38
39/* --- @dh_kcdsagen@ --- *
40 *
41 * Arguments: @dh_param *dp@ = pointer to output parameter block
42 * @unsigned ql@ = size of small factor of %$(p - 1)/2$%
43 * @unsigned pl@ = size of %$p$% in bits
44 * @unsigned flags@ = other generation flags
45 * @unsigned steps@ = number of steps to go
46 * @grand *r@ = random number source
47 * @pgen_proc *ev@ = event handler function
48 * @void *ec@ = context for the event handler
49 *
50 * Returns: @PGEN_DONE@ if it worked, @PGEN_ABORT@ if it failed.
51 *
52 * Use: Generates a KCDSA prime group. That is, it chooses a prime
53 * %$p$%, such that $%p = 2 q v + 1$%, for primes %$q$% and
54 * %$v$%. The actual group of interest is the subgroup of order
55 * %$q$%.
56 */
57
58int dh_kcdsagen(dh_param *dp, unsigned ql, unsigned pl,
59 unsigned flags, unsigned steps, grand *r,
60 pgen_proc *ev, void *ec)
61{
62 pgen_filterctx pf;
63 pgen_simulprime sp[2];
64 pgen_simulctx ss;
65 prim_ctx pc;
66 rabin rb;
67 int rc = PGEN_ABORT;
68 int i;
a901fe7a 69 mp *x = MP_NEW, *t = MP_NEW;
4e67e30b 70
23a83acc 71 /* --- First trick: find %$v$% --- */
4e67e30b
MW
72
73 pf.step = 2;
00e83192 74 x = mprand(x, pl - ql - 1, r, 1);
23aec1b4
MW
75 x = pgen("v", x, x, ev, ec,
76 steps, pgen_filter, &pf,
77 rabin_iters(pl - ql), pgen_test, &rb);
78 if (!x)
4e67e30b
MW
79 goto fail_0;
80
23a83acc 81 /* --- Second trick: find %$p$% and %$q$% --- */
4e67e30b 82
23aec1b4 83 x = mp_lsl(x, x, 1);
4e67e30b 84 sp[0].add = MP_ZERO; sp[0].mul = MP_ONE; sp[0].f = 0;
9cbd8bb7 85 sp[1].add = MP_ONE; sp[1].mul = x; sp[1].f = PGENF_KEEP; x = MP_NEW;
4e67e30b 86 ss.step = MP_TWO; ss.v = sp; ss.n = N(sp);
a901fe7a
MW
87 do {
88 x = mprand(x, ql, r, 1);
89 t = mp_mul(t, x, sp[1].mul);
90 } while (mp_bits(t) != pl);
23aec1b4
MW
91 dp->q = pgen("p", MP_NEW, x, ev, ec,
92 steps, pgen_simulstep, &ss,
93 rabin_iters(ql), pgen_simultest, &ss);
2c70dfbf 94 mp_drop(sp[1].mul);
9cbd8bb7 95 dp->p = sp[1].u.x;
23aec1b4 96 if (!dp->q)
4e67e30b 97 goto fail_1;
4e67e30b
MW
98
99 /* --- Third trick: find a generator --- */
100
101 mpmont_create(&pc.mm, dp->p);
102 mp_div(&x, 0, dp->p, dp->q);
103 i = 0;
104 pc.exp = x;
105 pc.n = 0;
106 dp->g = pgen("g", MP_NEW, MP_NEW, ev, ec,
107 0, prim_step, &i, 1, prim_test, &pc);
108 mpmont_destroy(&pc.mm);
109 if (!dp->g)
9cbd8bb7 110 goto fail_1;
4e67e30b
MW
111
112 rc = PGEN_DONE;
113 goto done;
114
115 /* --- Tidying up and going home --- */
116
4e67e30b 117fail_1:
9cbd8bb7
MW
118 mp_drop(dp->p);
119 mp_drop(dp->q);
4e67e30b
MW
120fail_0:
121done:
122 mp_drop(x);
a901fe7a 123 mp_drop(t);
4e67e30b
MW
124 return (rc);
125}
126
127/*----- That's all, folks -------------------------------------------------*/