This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
math_group.c
305 lines (254 loc) · 8.57 KB
/
math_group.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/* borrowed from isakmpd-20030718 (-; */
/* $OpenBSD: math_group.c,v 1.18 2003/06/03 14:28:16 ho Exp $ */
/* $EOM: math_group.c,v 1.25 2000/04/07 19:53:26 niklas Exp $ */
/*
* Copyright (c) 1998 Niels Provos. All rights reserved.
* Copyright (c) 1999, 2000 Niklas Hallqvist. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This code was written under funding by Ericsson Radio Systems.
*/
#include <assert.h>
#include <sys/param.h>
#include <stdlib.h>
#include <string.h>
#include <netinet/in.h>
#include <gcrypt.h>
#include "math_group.h"
/* We do not want to export these definitions. */
static void modp_free(struct group *);
static struct group *modp_clone(struct group *, struct group *);
static void modp_init(struct group *);
static int modp_getlen(struct group *);
static void modp_getraw(struct group *, gcry_mpi_t, unsigned char *);
static int modp_setraw(struct group *, gcry_mpi_t, unsigned char *, int);
static int modp_setrandom(struct group *, gcry_mpi_t);
static int modp_operation(struct group *, gcry_mpi_t, gcry_mpi_t, gcry_mpi_t);
/*
* This module provides access to the operations on the specified group
* and is absolutly free of any cryptographic devices. This is math :-).
*/
/* Describe preconfigured MODP groups */
/*
* The Generalized Number Field Sieve has an asymptotic running time
* of: O(exp(1.9223 * (ln q)^(1/3) (ln ln q)^(2/3))), where q is the
* group order, e.g. q = 2**768.
*/
static const struct modp_dscr oakley_modp[] = {
{
OAKLEY_GRP_1, 72, /* This group is insecure, only sufficient for DES */
"FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD1"
"29024E088A67CC74020BBEA63B139B22514A08798E3404DD"
"EF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245"
"E485B576625E7EC6F44C42E9A63A3620FFFFFFFFFFFFFFFF",
"2"
},
{
OAKLEY_GRP_2, 82, /* This group is a bit better */
"FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD1"
"29024E088A67CC74020BBEA63B139B22514A08798E3404DD"
"EF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245"
"E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7ED"
"EE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381"
"FFFFFFFFFFFFFFFF",
"2"
},
{
OAKLEY_GRP_5, 102, /* This group is yet a bit better, but non-standard */
"FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD1"
"29024E088A67CC74020BBEA63B139B22514A08798E3404DD"
"EF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245"
"E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7ED"
"EE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3D"
"C2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F"
"83655D23DCA3AD961C62F356208552BB9ED529077096966D"
"670C354E4ABC9804F1746C08CA237327FFFFFFFFFFFFFFFF",
"2"
},
};
/* XXX I want to get rid of the casting here. */
static struct group groups[] = {
{
MODP, OAKLEY_GRP_1, 0, NULL, &oakley_modp[0], NULL, NULL, NULL, NULL, NULL,
(int (*)(struct group *))modp_getlen,
(void (*)(struct group *, void *, unsigned char *))modp_getraw,
(int (*)(struct group *, void *, unsigned char *, int))modp_setraw,
(int (*)(struct group *, void *))modp_setrandom,
(int (*)(struct group *, void *, void *, void *))modp_operation
},
{
MODP, OAKLEY_GRP_2, 0, NULL, &oakley_modp[1], NULL, NULL, NULL, NULL, NULL,
(int (*)(struct group *))modp_getlen,
(void (*)(struct group *, void *, unsigned char *))modp_getraw,
(int (*)(struct group *, void *, unsigned char *, int))modp_setraw,
(int (*)(struct group *, void *))modp_setrandom,
(int (*)(struct group *, void *, void *, void *))modp_operation
},
{
MODP, OAKLEY_GRP_5, 0, NULL, &oakley_modp[2], NULL, NULL, NULL, NULL, NULL,
(int (*)(struct group *))modp_getlen,
(void (*)(struct group *, void *, unsigned char *))modp_getraw,
(int (*)(struct group *, void *, unsigned char *, int))modp_setraw,
(int (*)(struct group *, void *))modp_setrandom,
(int (*)(struct group *, void *, void *, void *))modp_operation
},
};
/*
* Initialize the group structure for later use,
* this is done by converting the values given in the describtion
* and converting them to their native representation.
*/
void group_init(void)
{
int i;
for (i = sizeof(groups) / sizeof(groups[0]) - 1; i >= 0; i--) {
assert(groups[i].type == MODP);
modp_init(&groups[i]); /* Initialize an over GF(p) */
}
}
struct group *group_get(int id)
{
struct group *new, *clone;
assert(id >= 1);
assert(id <= (int)(sizeof(groups) / sizeof(groups[0])));
clone = &groups[id - 1];
new = malloc(sizeof *new);
assert(new);
assert(clone->type == MODP);
new = modp_clone(new, clone);
return new;
}
void group_free(struct group *grp)
{
assert(grp->type == MODP);
modp_free(grp);
free(grp);
}
static struct group *modp_clone(struct group *new, struct group *clone)
{
struct modp_group *new_grp, *clone_grp = clone->group;
new_grp = malloc(sizeof *new_grp);
assert(new_grp);
memcpy(new, clone, sizeof(struct group));
new->group = new_grp;
new_grp->p = gcry_mpi_copy(clone_grp->p);
new_grp->gen = gcry_mpi_copy(clone_grp->gen);
new_grp->a = gcry_mpi_new(clone->bits);
new_grp->b = gcry_mpi_new(clone->bits);
new_grp->c = gcry_mpi_new(clone->bits);
new->gen = new_grp->gen;
new->a = new_grp->a;
new->b = new_grp->b;
new->c = new_grp->c;
return new;
}
static void modp_free(struct group *old)
{
struct modp_group *grp = old->group;
gcry_mpi_release(grp->p);
gcry_mpi_release(grp->gen);
gcry_mpi_release(grp->a);
gcry_mpi_release(grp->b);
gcry_mpi_release(grp->c);
free(grp);
}
static void modp_init(struct group *group)
{
const struct modp_dscr *dscr = group->group_dscr;
struct modp_group *grp;
grp = malloc(sizeof *grp);
assert(grp);
group->bits = dscr->bits;
gcry_mpi_scan(&grp->p, GCRYMPI_FMT_HEX, (const unsigned char*)dscr->prime, 0, NULL);
gcry_mpi_scan(&grp->gen, GCRYMPI_FMT_HEX, (const unsigned char *)dscr->gen, 0, NULL);
grp->a = gcry_mpi_new(group->bits);
grp->b = gcry_mpi_new(group->bits);
grp->c = gcry_mpi_new(group->bits);
group->gen = grp->gen;
group->a = grp->a;
group->b = grp->b;
group->c = grp->c;
group->group = grp;
}
static int modp_getlen(struct group *group)
{
struct modp_group *grp = (struct modp_group *)group->group;
return (gcry_mpi_get_nbits(grp->p) + 7) / 8;
}
static void modp_getraw(struct group *grp, gcry_mpi_t v, unsigned char *d)
{
size_t l, l2;
unsigned char *tmp;
int ret;
l = grp->getlen(grp);
ret = gcry_mpi_aprint(GCRYMPI_FMT_STD, &tmp, &l2, v);
memcpy(d, tmp + (l2 - l), l);
gcry_free(tmp);
#if 0
{
char *p;
gcry_mpi_aprint(GCRYMPI_FMT_HEX, (void **)&p, NULL, v);
printf("export %d - %d(%d):\n%s\n", l, l2, ret, p);
gcry_free(p);
}
#endif
}
static int modp_setraw(struct group *grp, gcry_mpi_t d, unsigned char *s, int l)
{
int i;
grp = NULL; /* unused */
gcry_mpi_set_ui(d, 0);
for (i = 0; i < l; i++) {
gcry_mpi_mul_2exp(d, d, 8);
gcry_mpi_add_ui(d, d, s[i]);
}
#if 0
{
char *p;
gcry_mpi_aprint(GCRYMPI_FMT_HEX, (void **)&p, NULL, d);
printf("import %d:\n%s\n", l, p);
gcry_free(p);
}
#endif
return 0;
}
static int modp_setrandom(struct group *grp, gcry_mpi_t d)
{
int i, l = grp->getlen(grp);
uint32_t tmp = 0;
gcry_mpi_set_ui(d, 0);
for (i = 0; i < l; i++) {
if (i % 4)
gcry_randomize((unsigned char *)&tmp, sizeof(tmp), GCRY_STRONG_RANDOM);
gcry_mpi_mul_2exp(d, d, 8);
gcry_mpi_add_ui(d, d, tmp & 0xFF);
tmp >>= 8;
}
return 0;
}
static int modp_operation(struct group *group, gcry_mpi_t d, gcry_mpi_t a, gcry_mpi_t e)
{
struct modp_group *grp = (struct modp_group *)group->group;
gcry_mpi_powm(d, a, e, grp->p);
return 0;
}