Skip to content

Commit 9470668

Browse files
authored
Merge pull request wolfSSL#9074 from douzzer/20250807-redo-PR8900
20250807-redo-PR8900
2 parents 8bd4fb5 + 2dfc7ee commit 9470668

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

wolfcrypt/src/sp_int.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14207,6 +14207,9 @@ static int _sp_exptmod_nct(const sp_int* b, const sp_int* e, const sp_int* m,
1420714207
if (bits > 450) {
1420814208
winBits = 6;
1420914209
}
14210+
else if (bits <= 21) {
14211+
winBits = 2;
14212+
}
1421014213
else if (bits <= 36) {
1421114214
winBits = 3;
1421214215
}

0 commit comments

Comments
 (0)