mirror of https://github.com/wolfSSL/wolfssl.git
Merge pull request #3683 from SparkiDev/sp_int_mont_red_1
SP math all: fix 1 word Montgomery Reducepull/3689/head
commit
f35f57c378
|
@ -12065,7 +12065,7 @@ static int _sp_mont_red(sp_int* a, sp_int* m, sp_int_digit mp)
|
||||||
a->dp[1] = w;
|
a->dp[1] = w;
|
||||||
w >>= SP_WORD_SIZE;
|
w >>= SP_WORD_SIZE;
|
||||||
a->dp[2] = w;
|
a->dp[2] = w;
|
||||||
a->used = m->used * 2;
|
a->used = m->used * 2 + 1;
|
||||||
/* mp is SP_WORD_SIZE */
|
/* mp is SP_WORD_SIZE */
|
||||||
bits = SP_WORD_SIZE;
|
bits = SP_WORD_SIZE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue