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 67756d7 commit 5e66cfcCopy full SHA for 5e66cfc
bn_mp_reduce_is_2k.c
@@ -24,7 +24,7 @@ int mp_reduce_is_2k(const mp_int *a)
24
return MP_NO;
25
}
26
iz <<= 1;
27
- if (iz > (mp_digit)MP_MASK) {
+ if (iz > MP_MASK) {
28
++iw;
29
iz = 1;
30
0 commit comments