pqc/crypto_kem/hqc-rmrs-128/avx2/gf2x.h
2021-03-24 21:02:48 +00:00

22 lines
360 B
C

#ifndef GF2X_H
#define GF2X_H
/**
* @file gf2x.h
* @brief Header file for gf2x.c
*/
#include "parameters.h"
#include <immintrin.h>
#include <stdint.h>
typedef union {
uint64_t arr64[VEC_N_256_SIZE_64];
__m256i dummy;
} aligned_vec_t;
void PQCLEAN_HQCRMRS128_AVX2_vect_mul(uint64_t *o, const aligned_vec_t *a1, const aligned_vec_t *a2);
#endif