Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / dropbear / libtommath / bn_mp_invmod_slow.c
bloba4e4fbcf88cb130c6e49790b75e3c96635fd9909
1 #include <tommath.h>
2 #ifdef BN_MP_INVMOD_SLOW_C
3 /* LibTomMath, multiple-precision integer library -- Tom St Denis
5 * LibTomMath is a library that provides multiple-precision
6 * integer arithmetic as well as number theoretic functionality.
8 * The library was designed directly after the MPI library by
9 * Michael Fromberger but has been written from scratch with
10 * additional optimizations in place.
12 * The library is free for all purposes without any express
13 * guarantee it works.
15 * Tom St Denis, tomstdenis@gmail.com, http://math.libtomcrypt.com
18 /* hac 14.61, pp608 */
19 int mp_invmod_slow (mp_int * a, mp_int * b, mp_int * c)
21 mp_int x, y, u, v, A, B, C, D;
22 int res;
24 /* b cannot be negative */
25 if (b->sign == MP_NEG || mp_iszero(b) == 1) {
26 return MP_VAL;
29 /* init temps */
30 if ((res = mp_init_multi(&x, &y, &u, &v,
31 &A, &B, &C, &D, NULL)) != MP_OKAY) {
32 return res;
35 /* x = a, y = b */
36 if ((res = mp_mod(a, b, &x)) != MP_OKAY) {
37 goto LBL_ERR;
39 if ((res = mp_copy (b, &y)) != MP_OKAY) {
40 goto LBL_ERR;
43 /* 2. [modified] if x,y are both even then return an error! */
44 if (mp_iseven (&x) == 1 && mp_iseven (&y) == 1) {
45 res = MP_VAL;
46 goto LBL_ERR;
49 /* 3. u=x, v=y, A=1, B=0, C=0,D=1 */
50 if ((res = mp_copy (&x, &u)) != MP_OKAY) {
51 goto LBL_ERR;
53 if ((res = mp_copy (&y, &v)) != MP_OKAY) {
54 goto LBL_ERR;
56 mp_set (&A, 1);
57 mp_set (&D, 1);
59 top:
60 /* 4. while u is even do */
61 while (mp_iseven (&u) == 1) {
62 /* 4.1 u = u/2 */
63 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) {
64 goto LBL_ERR;
66 /* 4.2 if A or B is odd then */
67 if (mp_isodd (&A) == 1 || mp_isodd (&B) == 1) {
68 /* A = (A+y)/2, B = (B-x)/2 */
69 if ((res = mp_add (&A, &y, &A)) != MP_OKAY) {
70 goto LBL_ERR;
72 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) {
73 goto LBL_ERR;
76 /* A = A/2, B = B/2 */
77 if ((res = mp_div_2 (&A, &A)) != MP_OKAY) {
78 goto LBL_ERR;
80 if ((res = mp_div_2 (&B, &B)) != MP_OKAY) {
81 goto LBL_ERR;
85 /* 5. while v is even do */
86 while (mp_iseven (&v) == 1) {
87 /* 5.1 v = v/2 */
88 if ((res = mp_div_2 (&v, &v)) != MP_OKAY) {
89 goto LBL_ERR;
91 /* 5.2 if C or D is odd then */
92 if (mp_isodd (&C) == 1 || mp_isodd (&D) == 1) {
93 /* C = (C+y)/2, D = (D-x)/2 */
94 if ((res = mp_add (&C, &y, &C)) != MP_OKAY) {
95 goto LBL_ERR;
97 if ((res = mp_sub (&D, &x, &D)) != MP_OKAY) {
98 goto LBL_ERR;
101 /* C = C/2, D = D/2 */
102 if ((res = mp_div_2 (&C, &C)) != MP_OKAY) {
103 goto LBL_ERR;
105 if ((res = mp_div_2 (&D, &D)) != MP_OKAY) {
106 goto LBL_ERR;
110 /* 6. if u >= v then */
111 if (mp_cmp (&u, &v) != MP_LT) {
112 /* u = u - v, A = A - C, B = B - D */
113 if ((res = mp_sub (&u, &v, &u)) != MP_OKAY) {
114 goto LBL_ERR;
117 if ((res = mp_sub (&A, &C, &A)) != MP_OKAY) {
118 goto LBL_ERR;
121 if ((res = mp_sub (&B, &D, &B)) != MP_OKAY) {
122 goto LBL_ERR;
124 } else {
125 /* v - v - u, C = C - A, D = D - B */
126 if ((res = mp_sub (&v, &u, &v)) != MP_OKAY) {
127 goto LBL_ERR;
130 if ((res = mp_sub (&C, &A, &C)) != MP_OKAY) {
131 goto LBL_ERR;
134 if ((res = mp_sub (&D, &B, &D)) != MP_OKAY) {
135 goto LBL_ERR;
139 /* if not zero goto step 4 */
140 if (mp_iszero (&u) == 0)
141 goto top;
143 /* now a = C, b = D, gcd == g*v */
145 /* if v != 1 then there is no inverse */
146 if (mp_cmp_d (&v, 1) != MP_EQ) {
147 res = MP_VAL;
148 goto LBL_ERR;
151 /* if its too low */
152 while (mp_cmp_d(&C, 0) == MP_LT) {
153 if ((res = mp_add(&C, b, &C)) != MP_OKAY) {
154 goto LBL_ERR;
158 /* too big */
159 while (mp_cmp_mag(&C, b) != MP_LT) {
160 if ((res = mp_sub(&C, b, &C)) != MP_OKAY) {
161 goto LBL_ERR;
165 /* C is now the inverse */
166 mp_exch (&C, c);
167 res = MP_OKAY;
168 LBL_ERR:mp_clear_multi (&x, &y, &u, &v, &A, &B, &C, &D, NULL);
169 return res;
171 #endif
173 /* $Source: /cvs/libtom/libtommath/bn_mp_invmod_slow.c,v $ */
174 /* $Revision: 1.3 $ */
175 /* $Date: 2006/03/31 14:18:44 $ */