summaryrefslogtreecommitdiffstats
path: root/third_party/heimdal/lib/hcrypto/libtommath/mtest/mtest.c
blob: 06c9afb1ff50c10cbeb8a0039d5b02c79a94876a (plain)
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
/* makes a bignum test harness with NUM tests per operation
 *
 * the output is made in the following format [one parameter per line]

operation
operand1
operand2
[... operandN]
result1
result2
[... resultN]

So for example "a * b mod n" would be

mulmod
a
b
n
a*b mod n

e.g. if a=3, b=4 n=11 then

mulmod
3
4
11
1

 */

#ifdef MP_8BIT
#define THE_MASK 127
#else
#define THE_MASK 32767
#endif

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "mpi.c"

#ifdef LTM_MTEST_REAL_RAND
#define getRandChar() fgetc(rng)
FILE *rng;
#else
#define getRandChar() (rand()&0xFF)
#endif

void rand_num(mp_int *a)
{
   int size;
   unsigned char buf[2048];
   size_t sz;

   size = 1 + ((getRandChar()<<8) + getRandChar()) % 101;
   buf[0] = (getRandChar()&1)?1:0;
#ifdef LTM_MTEST_REAL_RAND
   sz = fread(buf+1, 1, size, rng);
#else
   sz = 1;
   while (sz < (unsigned)size) {
      buf[sz] = getRandChar();
      ++sz;
   }
#endif
   if (sz != (unsigned)size) {
      fprintf(stderr, "\nWarning: fread failed\n\n");
   }
   while (buf[1] == 0) buf[1] = getRandChar();
   mp_read_raw(a, buf, 1+size);
}

void rand_num2(mp_int *a)
{
   int size;
   unsigned char buf[2048];
   size_t sz;

   size = 10 + ((getRandChar()<<8) + getRandChar()) % 101;
   buf[0] = (getRandChar()&1)?1:0;
#ifdef LTM_MTEST_REAL_RAND
   sz = fread(buf+1, 1, size, rng);
#else
   sz = 1;
   while (sz < (unsigned)size) {
      buf[sz] = getRandChar();
      ++sz;
   }
#endif
   if (sz != (unsigned)size) {
      fprintf(stderr, "\nWarning: fread failed\n\n");
   }
   while (buf[1] == 0) buf[1] = getRandChar();
   mp_read_raw(a, buf, 1+size);
}

#define mp_to64(a, b) mp_toradix(a, b, 64)

int main(int argc, char *argv[])
{
   int n, tmp;
   long long max;
   mp_int a, b, c, d, e;
#ifdef MTEST_NO_FULLSPEED
   clock_t t1;
#endif
   char buf[4096];

   mp_init(&a);
   mp_init(&b);
   mp_init(&c);
   mp_init(&d);
   mp_init(&e);

   if (argc > 1) {
      max = strtol(argv[1], NULL, 0);
      if (max < 0) {
         if (max > -64) {
            max = (1 << -(max)) + 1;
         } else {
            max = 1;
         }
      } else if (max == 0) {
         max = 1;
      }
   } else {
      max = 0;
   }


   /* initial (2^n - 1)^2 testing, makes sure the comba multiplier works [it has the new carry code] */
   /*
      mp_set(&a, 1);
      for (n = 1; n < 8192; n++) {
          mp_mul(&a, &a, &c);
          printf("mul\n");
          mp_to64(&a, buf);
          printf("%s\n%s\n", buf, buf);
          mp_to64(&c, buf);
          printf("%s\n", buf);

          mp_add_d(&a, 1, &a);
          mp_mul_2(&a, &a);
          mp_sub_d(&a, 1, &a);
      }
   */

#ifdef LTM_MTEST_REAL_RAND
   rng = fopen("/dev/urandom", "rb");
   if (rng == NULL) {
      rng = fopen("/dev/random", "rb");
      if (rng == NULL) {
         fprintf(stderr, "\nWarning:  no /dev/[u]random available\n\n");
         printf("exit\n");
         return 1;
      }
   }
#else
   srand(23);
#endif

#ifdef MTEST_NO_FULLSPEED
   t1 = clock();
#endif
   for (;;) {
#ifdef MTEST_NO_FULLSPEED
      if (clock() - t1 > CLOCKS_PER_SEC) {
         sleep(2);
         t1 = clock();
      }
#endif
      n = getRandChar() % 15;

      if (max != 0) {
         --max;
         if (max == 0)
            n = 255;
      }

      if (n == 0) {
         /* add tests */
         rand_num(&a);
         rand_num(&b);
         mp_add(&a, &b, &c);
         printf("add\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
         mp_to64(&c, buf);
         printf("%s\n", buf);
      } else if (n == 1) {
         /* sub tests */
         rand_num(&a);
         rand_num(&b);
         mp_sub(&a, &b, &c);
         printf("sub\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
         mp_to64(&c, buf);
         printf("%s\n", buf);
      } else if (n == 2) {
         /* mul tests */
         rand_num(&a);
         rand_num(&b);
         mp_mul(&a, &b, &c);
         printf("mul\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
         mp_to64(&c, buf);
         printf("%s\n", buf);
      } else if (n == 3) {
         /* div tests */
         rand_num(&a);
         rand_num(&b);
         mp_div(&a, &b, &c, &d);
         printf("div\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
         mp_to64(&c, buf);
         printf("%s\n", buf);
         mp_to64(&d, buf);
         printf("%s\n", buf);
      } else if (n == 4) {
         /* sqr tests */
         rand_num(&a);
         mp_sqr(&a, &b);
         printf("sqr\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
      } else if (n == 5) {
         /* mul_2d test */
         rand_num(&a);
         mp_copy(&a, &b);
         n = getRandChar() & 63;
         mp_mul_2d(&b, n, &b);
         mp_to64(&a, buf);
         printf("mul2d\n");
         printf("%s\n", buf);
         printf("%d\n", n);
         mp_to64(&b, buf);
         printf("%s\n", buf);
      } else if (n == 6) {
         /* div_2d test */
         rand_num(&a);
         mp_copy(&a, &b);
         n = getRandChar() & 63;
         mp_div_2d(&b, n, &b, NULL);
         mp_to64(&a, buf);
         printf("div2d\n");
         printf("%s\n", buf);
         printf("%d\n", n);
         mp_to64(&b, buf);
         printf("%s\n", buf);
      } else if (n == 7) {
         /* gcd test */
         rand_num(&a);
         rand_num(&b);
         a.sign = MP_ZPOS;
         b.sign = MP_ZPOS;
         mp_gcd(&a, &b, &c);
         printf("gcd\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
         mp_to64(&c, buf);
         printf("%s\n", buf);
      } else if (n == 8) {
         /* lcm test */
         rand_num(&a);
         rand_num(&b);
         a.sign = MP_ZPOS;
         b.sign = MP_ZPOS;
         mp_lcm(&a, &b, &c);
         printf("lcm\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
         mp_to64(&c, buf);
         printf("%s\n", buf);
      } else if (n == 9) {
         /* exptmod test */
         rand_num2(&a);
         rand_num2(&b);
         rand_num2(&c);
         /*      if (c.dp[0]&1) mp_add_d(&c, 1, &c); */
         a.sign = b.sign = c.sign = 0;
         mp_exptmod(&a, &b, &c, &d);
         printf("expt\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
         mp_to64(&c, buf);
         printf("%s\n", buf);
         mp_to64(&d, buf);
         printf("%s\n", buf);
      } else if (n == 10) {
         /* invmod test */
         do {
            rand_num2(&a);
            rand_num2(&b);
            b.sign = MP_ZPOS;
            a.sign = MP_ZPOS;
            mp_gcd(&a, &b, &c);
         } while (mp_cmp_d(&c, 1) != 0 || mp_cmp_d(&b, 1) == 0);
         mp_invmod(&a, &b, &c);
         printf("invmod\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
         mp_to64(&c, buf);
         printf("%s\n", buf);
      } else if (n == 11) {
         rand_num(&a);
         mp_mul_2(&a, &a);
         mp_div_2(&a, &b);
         printf("div2\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
      } else if (n == 12) {
         rand_num2(&a);
         mp_mul_2(&a, &b);
         printf("mul2\n");
         mp_to64(&a, buf);
         printf("%s\n", buf);
         mp_to64(&b, buf);
         printf("%s\n", buf);
      } else if (n == 13) {
         rand_num2(&a);
         tmp = abs(rand()) & THE_MASK;
         mp_add_d(&a, tmp, &b);
         printf("add_d\n");
         mp_to64(&a, buf);
         printf("%s\n%d\n", buf, tmp);
         mp_to64(&b, buf);
         printf("%s\n", buf);
      } else if (n == 14) {
         rand_num2(&a);
         tmp = abs(rand()) & THE_MASK;
         mp_sub_d(&a, tmp, &b);
         printf("sub_d\n");
         mp_to64(&a, buf);
         printf("%s\n%d\n", buf, tmp);
         mp_to64(&b, buf);
         printf("%s\n", buf);
      } else if (n == 255) {
         printf("exit\n");
         break;
      }

   }
#ifdef LTM_MTEST_REAL_RAND
   fclose(rng);
#endif
   return 0;
}

/* $Source$ */
/* $Revision$ */
/* $Date$ */