Skip to content

Commit be42ce2

Browse files
committed
remove literal prefix
1 parent 150c47c commit be42ce2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bn_mp_kronecker.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ mp_err mp_kronecker(const mp_int *a, const mp_int *p, int *c)
5151
goto LBL_KRON_1;
5252
}
5353

54-
if ((v & 0x1) == 0) {
54+
if ((v & 1) == 0) {
5555
k = 1;
5656
} else {
5757
k = table[a->dp[0] & 7u];
@@ -84,7 +84,7 @@ mp_err mp_kronecker(const mp_int *a, const mp_int *p, int *c)
8484
goto LBL_KRON;
8585
}
8686

87-
if ((v & 0x1) == 1) {
87+
if ((v & 1) == 1) {
8888
k = k * table[p1.dp[0] & 7u];
8989
}
9090

0 commit comments

Comments
 (0)