Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / dropbear / libtommath / bn_s_mp_sub.c
blobf5949f50cbfe11ec727161d09c79e4d3b8738641
1 #include <tommath.h>
2 #ifdef BN_S_MP_SUB_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 /* low level subtraction (assumes |a| > |b|), HAC pp.595 Algorithm 14.9 */
19 int
20 s_mp_sub (mp_int * a, mp_int * b, mp_int * c)
22 int olduse, res, min, max;
24 /* find sizes */
25 min = b->used;
26 max = a->used;
28 /* init result */
29 if (c->alloc < max) {
30 if ((res = mp_grow (c, max)) != MP_OKAY) {
31 return res;
34 olduse = c->used;
35 c->used = max;
38 register mp_digit u, *tmpa, *tmpb, *tmpc;
39 register int i;
41 /* alias for digit pointers */
42 tmpa = a->dp;
43 tmpb = b->dp;
44 tmpc = c->dp;
46 /* set carry to zero */
47 u = 0;
48 for (i = 0; i < min; i++) {
49 /* T[i] = A[i] - B[i] - U */
50 *tmpc = *tmpa++ - *tmpb++ - u;
52 /* U = carry bit of T[i]
53 * Note this saves performing an AND operation since
54 * if a carry does occur it will propagate all the way to the
55 * MSB. As a result a single shift is enough to get the carry
57 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
59 /* Clear carry from T[i] */
60 *tmpc++ &= MP_MASK;
63 /* now copy higher words if any, e.g. if A has more digits than B */
64 for (; i < max; i++) {
65 /* T[i] = A[i] - U */
66 *tmpc = *tmpa++ - u;
68 /* U = carry bit of T[i] */
69 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
71 /* Clear carry from T[i] */
72 *tmpc++ &= MP_MASK;
75 /* clear digits above used (since we may not have grown result above) */
76 for (i = c->used; i < olduse; i++) {
77 *tmpc++ = 0;
81 mp_clamp (c);
82 return MP_OKAY;
85 #endif
87 /* $Source: /cvs/libtom/libtommath/bn_s_mp_sub.c,v $ */
88 /* $Revision: 1.3 $ */
89 /* $Date: 2006/03/31 14:18:44 $ */