comparison libtommath/etc/mont.c @ 389:5ff8218bcee9

propagate from branch 'au.asn.ucc.matt.ltm.dropbear' (head 2af95f00ebd5bb7a28b3817db1218442c935388e) to branch 'au.asn.ucc.matt.dropbear' (head ecd779509ef23a8cdf64888904fc9b31d78aa933)
author Matt Johnston <matt@ucc.asn.au>
date Thu, 11 Jan 2007 03:14:55 +0000
parents eed26cff980b
children 60fc6476e044
comparison
equal deleted inserted replaced
388:fb54020f78e1 389:5ff8218bcee9
1 /* tests the montgomery routines */
2 #include <tommath.h>
3
4 int main(void)
5 {
6 mp_int modulus, R, p, pp;
7 mp_digit mp;
8 long x, y;
9
10 srand(time(NULL));
11 mp_init_multi(&modulus, &R, &p, &pp, NULL);
12
13 /* loop through various sizes */
14 for (x = 4; x < 256; x++) {
15 printf("DIGITS == %3ld...", x); fflush(stdout);
16
17 /* make up the odd modulus */
18 mp_rand(&modulus, x);
19 modulus.dp[0] |= 1;
20
21 /* now find the R value */
22 mp_montgomery_calc_normalization(&R, &modulus);
23 mp_montgomery_setup(&modulus, &mp);
24
25 /* now run through a bunch tests */
26 for (y = 0; y < 1000; y++) {
27 mp_rand(&p, x/2); /* p = random */
28 mp_mul(&p, &R, &pp); /* pp = R * p */
29 mp_montgomery_reduce(&pp, &modulus, mp);
30
31 /* should be equal to p */
32 if (mp_cmp(&pp, &p) != MP_EQ) {
33 printf("FAILURE!\n");
34 exit(-1);
35 }
36 }
37 printf("PASSED\n");
38 }
39
40 return 0;
41 }
42
43
44
45
46
47
48 /* $Source: /cvs/libtom/libtommath/etc/mont.c,v $ */
49 /* $Revision: 1.2 $ */
50 /* $Date: 2005/05/05 14:38:47 $ */