1
1
réplica de https://github.com/henrydcase/pqc.git sincronizado 2024-11-22 15:39:07 +00:00

falcon: conversion warning

Este cometimento está contido em:
John M. Schanck 2020-09-17 11:25:08 -04:00 cometido por Kris Kwiatkowski
ascendente c8cfccc488
cometimento 1ba4f503a7
2 ficheiros modificados com 6 adições e 2 eliminações

Ver ficheiro

@ -444,7 +444,9 @@ PQCLEAN_FALCON1024_CLEAN_comp_decode(
}
}
x[u] = (int16_t) m;
if (s) x[u] = -x[u];
if (s) {
x[u] = (int16_t) -x[u];
}
}
return v;
}

Ver ficheiro

@ -444,7 +444,9 @@ PQCLEAN_FALCON512_CLEAN_comp_decode(
}
}
x[u] = (int16_t) m;
if (s) x[u] = -x[u];
if (s) {
x[u] = (int16_t) -x[u];
}
}
return v;
}