From b4945e4a16feff49c1296cbceced9339a137d908 Mon Sep 17 00:00:00 2001 From: "John M. Schanck" Date: Wed, 18 Nov 2020 17:14:30 -0500 Subject: [PATCH] hqc-rmrs-256: remove unused static vars --- crypto_kem/hqc-rmrs-128/META.yml | 4 ++-- crypto_kem/hqc-rmrs-192/META.yml | 4 ++-- crypto_kem/hqc-rmrs-256/META.yml | 4 ++-- crypto_kem/hqc-rmrs-256/avx2/gf2x.c | 3 --- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/crypto_kem/hqc-rmrs-128/META.yml b/crypto_kem/hqc-rmrs-128/META.yml index 2aa72230..5085ab7a 100644 --- a/crypto_kem/hqc-rmrs-128/META.yml +++ b/crypto_kem/hqc-rmrs-128/META.yml @@ -22,9 +22,9 @@ principal-submitters: - Loïc Bidoux implementations: - name: clean - version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/4924a647/hqc + version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/c9181076/hqc - name: avx2 - version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/4924a647/hqc + version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/c9181076/hqc supported_platforms: - architecture: x86_64 operating_systems: diff --git a/crypto_kem/hqc-rmrs-192/META.yml b/crypto_kem/hqc-rmrs-192/META.yml index d03d18e8..657a7d43 100644 --- a/crypto_kem/hqc-rmrs-192/META.yml +++ b/crypto_kem/hqc-rmrs-192/META.yml @@ -22,9 +22,9 @@ principal-submitters: - Loïc Bidoux implementations: - name: clean - version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/4924a647/hqc + version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/c9181076/hqc - name: avx2 - version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/4924a647/hqc + version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/c9181076/hqc supported_platforms: - architecture: x86_64 operating_systems: diff --git a/crypto_kem/hqc-rmrs-256/META.yml b/crypto_kem/hqc-rmrs-256/META.yml index df72e6e1..ec41d040 100644 --- a/crypto_kem/hqc-rmrs-256/META.yml +++ b/crypto_kem/hqc-rmrs-256/META.yml @@ -22,9 +22,9 @@ principal-submitters: - Loïc Bidoux implementations: - name: clean - version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/4924a647/hqc + version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/c9181076/hqc - name: avx2 - version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/4924a647/hqc + version: hqc-submission_2020-10-01 via https://github.com/jschanck/package-pqclean/tree/c9181076/hqc supported_platforms: - architecture: x86_64 operating_systems: diff --git a/crypto_kem/hqc-rmrs-256/avx2/gf2x.c b/crypto_kem/hqc-rmrs-256/avx2/gf2x.c index a940ba98..2d3ac6d6 100644 --- a/crypto_kem/hqc-rmrs-256/avx2/gf2x.c +++ b/crypto_kem/hqc-rmrs-256/avx2/gf2x.c @@ -23,9 +23,6 @@ #define T2_5W_256 (2 * T_5W_256) #define t5 (5 * T_5W / 64) -uint64_t bloc64[PARAM_OMEGA_R]; // Allocation with the biggest possible weight -uint64_t bit64[PARAM_OMEGA_R]; // Allocation with the biggest possible weight - static inline void reduce(uint64_t *o, const __m256i *a); static inline void karat_mult_1(__m128i *C, const __m128i *A, const __m128i *B); static inline void karat_mult_2(__m256i *C, const __m256i *A, const __m256i *B);