mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-10 16:14:42 +02:00
wolfcrypt/src/sp_int.c: in _sp_exptmod_nct(), use 2 bit window if bits <= 21.
This commit is contained in:
@@ -14208,7 +14208,7 @@ static int _sp_exptmod_nct(const sp_int* b, const sp_int* e, const sp_int* m,
|
||||
winBits = 6;
|
||||
}
|
||||
else if (bits <= 21) {
|
||||
winBits = 1;
|
||||
winBits = 2;
|
||||
}
|
||||
else if (bits <= 36) {
|
||||
winBits = 3;
|
||||
|
Reference in New Issue
Block a user