mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
21 lines
319 B
C
21 lines
319 B
C
#ifndef FFT_H
|
|
#define FFT_H
|
|
|
|
|
|
/**
|
|
* @file fft.h
|
|
* Header file of fft.c
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
void PQCLEAN_HQC128_AVX2_fft(uint16_t *w, const uint16_t *f, size_t f_coeffs);
|
|
|
|
void PQCLEAN_HQC128_AVX2_fft_retrieve_bch_error_poly(uint64_t *error, const uint16_t *w);
|
|
|
|
|
|
#endif
|