SP math all: fix 1 word Montgomery Reduce

May have 3 words in partial result before shifting down.
pull/3683/head
Sean Parkinson 2021-01-25 10:15:20 +10:00
parent fb9836ed28
commit 4f0ed55232
1 changed files with 1 additions and 1 deletions

View File

@ -12065,7 +12065,7 @@ static int _sp_mont_red(sp_int* a, sp_int* m, sp_int_digit mp)
a->dp[1] = w;
w >>= SP_WORD_SIZE;
a->dp[2] = w;
a->used = m->used * 2;
a->used = m->used * 2 + 1;
/* mp is SP_WORD_SIZE */
bits = SP_WORD_SIZE;
}