1
1
의 미러 https://github.com/henrydcase/pqc.git synced 2024-11-22 07:35:38 +00:00

Fix left shift overflow for MASK_N2

This commit is contained in:
John M. Schanck 2020-09-09 17:20:11 -04:00 committed by Kris Kwiatkowski
부모 6cf952a2ce
커밋 2767acd007
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@ -10,7 +10,7 @@
*/
#define MASK_N2 ((1UL << PARAM_N2) - 1)
#define MASK_N2 ((((uint64_t) 1) << PARAM_N2) - 1)
/**
* @brief Decoding the code words to a message using the repetition code

파일 보기

@ -8,7 +8,7 @@
* @brief Implementation of repetition codes
*/
#define MASK_N2 ((1UL << PARAM_N2) - 1)
#define MASK_N2 ((((uint64_t) 1) << PARAM_N2) - 1)
static inline int32_t popcount(uint64_t n);

파일 보기

@ -10,7 +10,7 @@
*/
#define MASK_N2 ((1UL << PARAM_N2) - 1)
#define MASK_N2 ((((uint64_t) 1) << PARAM_N2) - 1)
/**
* @brief Decoding the code words to a message using the repetition code

파일 보기

@ -8,7 +8,7 @@
* @brief Implementation of repetition codes
*/
#define MASK_N2 ((1UL << PARAM_N2) - 1)
#define MASK_N2 ((((uint64_t) 1) << PARAM_N2) - 1)
static inline int32_t popcount(uint64_t n);