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 0e14cf0 commit adc93b6Copy full SHA for adc93b6
mp_kronecker.c
@@ -23,7 +23,7 @@ mp_err mp_kronecker(const mp_int *a, const mp_int *p, int *c)
23
mp_err err;
24
int v, k;
25
26
- static const char table[] = {0, 1, 0, -1, 0, -1, 0, 1};
+ static const int8_t table[] = {0, 1, 0, -1, 0, -1, 0, 1};
27
28
if (mp_iszero(p)) {
29
if ((a->used == 1) && (a->dp[0] == 1u)) {
0 commit comments