mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
18 lines
233 B
C
18 lines
233 B
C
#ifndef GF2X_H
|
|
#define GF2X_H
|
|
|
|
|
|
/**
|
|
* @file gf2x.h
|
|
* @brief Header file for gf2x.c
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
void PQCLEAN_HQCRMRS128_AVX2_vect_mul(uint64_t *o, const uint64_t *a1, const uint64_t *a2);
|
|
|
|
|
|
#endif
|