Browse Source

Satisfy linter

kyber
John M. Schanck 4 years ago
committed by Kris Kwiatkowski
parent
commit
f74c1e6ad2
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      crypto_kem/hqc-rmrs-128/clean/reed_muller.c
  2. +1
    -1
      crypto_kem/hqc-rmrs-192/clean/reed_muller.c
  3. +1
    -1
      crypto_kem/hqc-rmrs-256/clean/reed_muller.c

+ 1
- 1
crypto_kem/hqc-rmrs-128/clean/reed_muller.c View File

@@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))


static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);


+ 1
- 1
crypto_kem/hqc-rmrs-192/clean/reed_muller.c View File

@@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))


static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);


+ 1
- 1
crypto_kem/hqc-rmrs-256/clean/reed_muller.c View File

@@ -16,7 +16,7 @@
#define BIT0MASK(x) (-((x) & 1))


static void encode(uint32_t *word, const uint8_t message);
static void encode(uint32_t *word, uint8_t message);
static void hadamard(uint16_t src[128], uint16_t dst[128]);
static void expand_and_sum(uint16_t dest[128], const uint32_t src[4 * MULTIPLICITY]);
static uint8_t find_peaks(const uint16_t transform[128]);


Loading…
Cancel
Save