15 lines
325 B
C
15 lines
325 B
C
|
#ifndef PQCLEAN_MCELIECE6688128_AVX_BM_H
|
||
|
#define PQCLEAN_MCELIECE6688128_AVX_BM_H
|
||
|
/*
|
||
|
This file is for the inversion-free Berlekamp-Massey algorithm
|
||
|
see https://ieeexplore.ieee.org/document/87857
|
||
|
*/
|
||
|
|
||
|
#include "vec128.h"
|
||
|
#include "vec256.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE6688128_AVX_bm(vec128 * /*out*/, vec256 * /*in*/);
|
||
|
|
||
|
#endif
|
||
|
|