镜像自地址
https://github.com/henrydcase/pqc.git
已同步 2024-11-22 15:39:07 +00:00
falcon: conversion warning
这个提交包含在:
父节点
c8cfccc488
当前提交
1ba4f503a7
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
正在加载...
在新工单中引用
屏蔽一个用户