We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53fdf5f commit b1e1ea5Copy full SHA for b1e1ea5
mp_mul.c
@@ -23,7 +23,7 @@ mp_err mp_mul(const mp_int *a, const mp_int *b, mp_int *c)
23
} else if ((a == b) &&
24
MP_HAS(S_MP_SQR_COMBA) && /* can we use the fast comba multiplier? */
25
(((a->used * 2) + 1) < MP_WARRAY) &&
26
- (a->used < (MP_MAX_COMBA / 2))) {
+ (a->used < (MP_MAX_COMBA))) {
27
err = s_mp_sqr_comba(a, c);
28
29
MP_HAS(S_MP_SQR)) {
0 commit comments