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 6260241 commit 7395cc6Copy full SHA for 7395cc6
bn_mp_reduce_is_2k.c
@@ -29,8 +29,10 @@ mp_bool mp_reduce_is_2k(const mp_int *a)
29
iz = 1;
30
}
31
32
+ return MP_YES;
33
+ } else {
34
35
- return MP_YES;
36
37
38
#endif
bn_mp_reduce_is_2k_l.c
@@ -20,9 +20,9 @@ mp_bool mp_reduce_is_2k_l(const mp_int *a)
20
21
22
return (iy >= (a->used/2)) ? MP_YES : MP_NO;
23
-
24
+ return MP_NO;
25
- return MP_NO;
26
27
28
0 commit comments