math/mpreduce.h: Missing include files.
[u/mdw/catacomb] / pub / dh.h
CommitLineData
44c240ee 1/* -*-c-*-
2 *
052b36d0 3 * Diffie-Hellman and related public-key systems
44c240ee 4 *
44c240ee 5 * (c) 1999 Straylight/Edgeware
6 */
7
45c0fd36 8/*----- Licensing notice --------------------------------------------------*
44c240ee 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 *
44c240ee 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 *
44c240ee 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
b3f05084 28#ifndef CATACOMB_DH_H
29#define CATACOMB_DH_H
44c240ee 30
31#ifdef __cplusplus
32 extern "C" {
33#endif
34
35/*----- Header files ------------------------------------------------------*/
36
34e4f738 37#ifndef CATACOMB_GROUP_H
38# include "group.h"
39#endif
40
052b36d0 41#ifndef CATACOMB_GRAND_H
42# include "grand.h"
44c240ee 43#endif
44
e23471a7 45#ifndef CATACOMB_KEY_H
46# include "key.h"
47#endif
48
600127f0 49#ifndef CATACOMB_KEYCHECK_H
50# include "keycheck.h"
51#endif
52
052b36d0 53#ifndef CATACOMB_PGEN_H
54# include "pgen.h"
55#endif
44c240ee 56
34e4f738 57#ifndef CATACOMB_QDPARSE_H
58# include "qdparse.h"
59#endif
60
052b36d0 61/*----- Data structures ---------------------------------------------------*/
44c240ee 62
34e4f738 63typedef gprime_param dh_param; /* Group parameters */
44c240ee 64
600127f0 65typedef struct dh_pub {
45c0fd36 66 dh_param dp; /* Shared parameters */
600127f0 67 mp *y; /* Public key */
e23471a7 68} dh_pub;
69
600127f0 70typedef struct dh_priv {
71 dh_param dp; /* Shared parameters */
72 mp *x; /* Private key */
73 mp *y; /* %$y \equiv g^x \pmod{p}$% */
e23471a7 74} dh_priv;
75
76/*----- Key fetching ------------------------------------------------------*/
77
78extern const key_fetchdef dh_paramfetch[];
79#define DH_PARAMFETCHSZ 5
80
81extern const key_fetchdef dh_pubfetch[];
82#define DH_PUBFETCHSZ 6
83
84extern const key_fetchdef dh_privfetch[];
85#define DH_PRIVFETCHSZ 9
86
b92da8eb 87/* --- @dh_paramfree@, @dh_pubfree@, @dh_privfree@ --- *
88 *
89 * Arguments: @dh_param *dp@, @dh_pub *dp@, @dh_priv *dp@ = pointer to
90 * key block to free
91 *
92 * Returns: ---
93 *
94 * Use: Frees a Diffie-Hellman key block.
95 */
96
97extern void dh_paramfree(dh_param */*dp*/);
98extern void dh_pubfree(dh_pub */*dp*/);
99extern void dh_privfree(dh_priv */*dp*/);
100
44c240ee 101/*----- Functions provided ------------------------------------------------*/
102
052b36d0 103/* --- @dh_gen@ --- *
44c240ee 104 *
052b36d0 105 * Arguments: @dh_param *dp@ = pointer to output parameter block
106 * @unsigned ql@ = length of %$q$% in bits, or zero
107 * @unsigned pl@ = length of %$p$% in bits
108 * @unsigned steps@ = number of steps to go
109 * @grand *r@ = random number source
110 * @pgen_proc *event@ = event handler function
111 * @void *ectx@ = argument for the event handler
44c240ee 112 *
052b36d0 113 * Returns: @PGEN_DONE@ if it worked, @PGEN_ABORT@ if it didn't.
44c240ee 114 *
052b36d0 115 * Use: Generates Diffie-Hellman parameters.
44c240ee 116 *
052b36d0 117 * The parameters are a prime %$q$%, relatively small, and a
118 * large prime %$p = kq + 1$% for some %$k$%, together with a
119 * generator %$g$% of the cyclic subgroup of order %$q$%. These
120 * are actually the same as the DSA parameter set, but the
121 * generation algorithm is different. Also, if @ql@ is zero,
122 * this algorithm forces %$k = 2$%, and chooses %$g = 4$%. Make
123 * sure you have something interesting to do if you choose this
124 * option.
44c240ee 125 */
126
052b36d0 127extern int dh_gen(dh_param */*dp*/, unsigned /*ql*/, unsigned /*pl*/,
128 unsigned /*steps*/, grand */*r*/, pgen_proc */*event*/,
129 void */*ectx*/);
44c240ee 130
1269467c 131/* --- @dh_limlee@ --- *
132 *
133 * Arguments: @dh_param *dp@ = pointer to output parameter block
134 * @unsigned ql@ = length of smallest factor of %$(p - 1)/2$%
135 * @unsigned pl@ = length of %$p$% in bits
136 * @unsigned flags@ = other generation flags
137 * @unsigned steps@ = number of steps to go
138 * @grand *r@ = random number source
45c0fd36
MW
139 * @pgen_proc *oev@ = outer event handler function
140 * @void *oec@ = argument for the outer event handler
141 * @pgen_proc *iev@ = inner event handler function
142 * @void *iec@ = argument for the inner event handler
143 * @size_t *nf@, @mp ***f@ = output array for factors
1269467c 144 *
145 * Returns: @PGEN_DONE@ if it worked, @PGEN_ABORT@ if it didn't.
146 *
147 * Use: Generates Diffie-Hellman parameters based on a Lim-Lee prime.
148 *
149 * The modulus is a large prime %$p = 2 \prod q_i + 1$%, @pl@
150 * bits long, where the %$q_i$% are smaller primes each at least
151 * @ql@ bits long. It is safe to set @nf@ and @f@ to zero if
152 * you're not interested in the factor values.
153 *
154 * The returned %$g$% generates a subgroup of order %$q_0$% (the
155 * first factor, returned as @f[0]@), if the flag @DH_SUBGROUP@
156 * is set on entry; otherwise %$g$% will have order
157 * %$(p - 1)/2$%.
158 */
159
160#define DH_SUBGROUP 1u
161
162extern int dh_limlee(dh_param */*dp*/, unsigned /*ql*/, unsigned /*pl*/,
163 unsigned /*flags*/, unsigned /*steps*/, grand */*r*/,
164 pgen_proc */*oev*/, void */*oec*/, pgen_proc */*iev*/,
165 void */*iec*/, size_t */*nf*/, mp ***/*f*/);
166
4e67e30b
MW
167/* --- @dh_kcdsagen@ --- *
168 *
169 * Arguments: @dh_param *dp@ = pointer to output parameter block
170 * @unsigned ql@ = size of small factor of %$(p - 1)/2$%
171 * @unsigned pl@ = size of %$p$% in bits
172 * @unsigned flags@ = other generation flags (none defined)
173 * @unsigned steps@ = number of steps to go
174 * @grand *r@ = random number source
175 * @pgen_proc *ev@ = event handler function
176 * @void *ec@ = context for the event handler
177 *
178 * Returns: @PGEN_DONE@ if it worked, @PGEN_ABORT@ if it failed.
179 *
180 * Use: Generates a KCDSA prime group. That is, it chooses a prime
181 * %$p$%, such that $%p = 2 q v + 1$%, for primes %$q$% and
182 * %$v$%. The actual group of interest is the subgroup of order
183 * %$q$%.
184 */
185
186extern int dh_kcdsagen(dh_param */*dp*/, unsigned /*ql*/, unsigned /*pl*/,
187 unsigned /*flags*/, unsigned /*steps*/, grand */*r*/,
188 pgen_proc */*ev*/, void */*ec*/);
189
600127f0 190/* --- @dh_checkparam@ --- *
191 *
192 * Arguments: @keycheck *kc@ = keycheck state
193 * @const dh_param *dp@ = pointer to the parameter set
194 * @mp **v@ = optional vector of factors
195 * @size_t n@ = size of vector
196 *
197 * Returns: Zero if all OK, or return status from function.
198 *
199 * Use: Checks a set of Diffie-Hellman parameters for consistency and
200 * security.
201 */
202
203extern int dh_checkparam(keycheck */*kc*/, const dh_param */*dp*/,
204 mp **/*v*/, size_t /*n*/);
205
7b6d64f1 206/* ---- @dh_infofromdata@ --- *
207 *
208 * Arguments: @dh_param *dp@ = parameters to fill in
209 * @pdata *pd@ = packed data structure
210 *
211 * Returns: ---
212 *
213 * Use: Fills in a parameters structure from a packed data block.
214 */
215
216struct pdata;
217extern void dh_infofromdata(dh_param */*dp*/, struct pdata */*pd*/);
218
3688eb75 219/* --- @dh_parse@, @dhbin_parse@ --- *
34e4f738 220 *
221 * Arguments: @qd_parse *qd@ = parser context
222 * @dh_param *dp@ = parameters to fill in
223 *
224 * Returns: Zero if OK, nonzero on error.
225 *
3688eb75 226 * Use: Parses a prime/binary group string. This is either one of
227 * the standard group strings, or a %$p$%, %$q$%, %$g$% triple
34e4f738 228 * separated by commas.
229 */
230
231extern int dh_parse(qd_parse */*qd*/, dh_param */*dp*/);
3688eb75 232extern int dhbin_parse(qd_parse */*qd*/, gbin_param */*gb*/);
34e4f738 233
44c240ee 234/*----- That's all, folks -------------------------------------------------*/
235
236#ifdef __cplusplus
237 }
238#endif
239
240#endif