Browse Source

Namespace global variable in HQC

tags/v0.0.1
Thom Wiggers 4 years ago
committed by Kris Kwiatkowski
parent
commit
12c99ff23a
6 changed files with 6 additions and 6 deletions
  1. +1
    -1
      crypto_kem/hqc-128/avx2/code.c
  2. +1
    -1
      crypto_kem/hqc-128/avx2/gen_matrix.h
  3. +1
    -1
      crypto_kem/hqc-192/avx2/code.c
  4. +1
    -1
      crypto_kem/hqc-192/avx2/gen_matrix.h
  5. +1
    -1
      crypto_kem/hqc-256/avx2/code.c
  6. +1
    -1
      crypto_kem/hqc-256/avx2/gen_matrix.h

+ 1
- 1
crypto_kem/hqc-128/avx2/code.c View File

@@ -43,7 +43,7 @@ void PQCLEAN_HQC128_AVX2_code_encode(uint64_t *em, const uint64_t *m) {

__m256i *colonne, y, aux0;
__m256i msg = _mm256_lddqu_si256((const __m256i *) m);
colonne = ((__m256i *) gen_matrix);
colonne = ((__m256i *) PQCLEAN_HQC128_AVX2_gen_matrix);

pos_r = 0;
for (i = 0; i < PARAM_N1 - PARAM_K; i++) {


+ 1
- 1
crypto_kem/hqc-128/avx2/gen_matrix.h
File diff suppressed because it is too large
View File


+ 1
- 1
crypto_kem/hqc-192/avx2/code.c View File

@@ -43,7 +43,7 @@ void PQCLEAN_HQC192_AVX2_code_encode(uint64_t *em, const uint64_t *m) {

__m256i *colonne, y, aux0;
__m256i msg = _mm256_lddqu_si256((const __m256i *) m);
colonne = ((__m256i *) gen_matrix);
colonne = ((__m256i *) PQCLEAN_HQC192_AVX2_gen_matrix);

pos_r = 0;
for (i = 0; i < PARAM_N1 - PARAM_K; i++) {


+ 1
- 1
crypto_kem/hqc-192/avx2/gen_matrix.h
File diff suppressed because it is too large
View File


+ 1
- 1
crypto_kem/hqc-256/avx2/code.c View File

@@ -44,7 +44,7 @@ void PQCLEAN_HQC256_AVX2_code_encode(uint64_t *em, const uint64_t *m) {

__m256i *colonne, y, aux0;
__m256i msg = _mm256_lddqu_si256((const __m256i *) m);
colonne = ((__m256i *) gen_matrix);
colonne = ((__m256i *) PQCLEAN_HQC256_AVX2_gen_matrix);

pos_r = 0;
for (i = 0; i < PARAM_N1 - PARAM_K; i++) {


+ 1
- 1
crypto_kem/hqc-256/avx2/gen_matrix.h
File diff suppressed because it is too large
View File


Loading…
Cancel
Save