use MP_DIGIT_MAX instead of MP_MASK
This commit is contained in:
parent
d6a8de54f6
commit
ffdd008dda
@ -20,7 +20,7 @@ mp_err mp_incr(mp_int *a)
|
|||||||
a->sign = MP_NEG;
|
a->sign = MP_NEG;
|
||||||
}
|
}
|
||||||
return MP_OKAY;
|
return MP_OKAY;
|
||||||
} else if (a->dp[0] < MP_MASK) {
|
} else if (a->dp[0] < MP_DIGIT_MAX) {
|
||||||
a->dp[0]++;
|
a->dp[0]++;
|
||||||
return MP_OKAY;
|
return MP_OKAY;
|
||||||
} else {
|
} else {
|
||||||
|
@ -24,7 +24,7 @@ mp_bool mp_reduce_is_2k(const mp_int *a)
|
|||||||
return MP_NO;
|
return MP_NO;
|
||||||
}
|
}
|
||||||
iz <<= 1;
|
iz <<= 1;
|
||||||
if (iz > MP_MASK) {
|
if (iz > MP_DIGIT_MAX) {
|
||||||
++iw;
|
++iw;
|
||||||
iz = 1;
|
iz = 1;
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@ mp_bool mp_reduce_is_2k_l(const mp_int *a)
|
|||||||
} else if (a->used > 1) {
|
} else if (a->used > 1) {
|
||||||
/* if more than half of the digits are -1 we're sold */
|
/* if more than half of the digits are -1 we're sold */
|
||||||
for (iy = ix = 0; ix < a->used; ix++) {
|
for (iy = ix = 0; ix < a->used; ix++) {
|
||||||
if (a->dp[ix] == MP_MASK) {
|
if (a->dp[ix] == MP_DIGIT_MAX) {
|
||||||
++iy;
|
++iy;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user