mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
15 lines
308 B
C
15 lines
308 B
C
|
#ifndef PQCLEAN_MCELIECE348864F_AVX_BM_H
|
||
|
#define PQCLEAN_MCELIECE348864F_AVX_BM_H
|
||
|
/*
|
||
|
This file is for the inversion-free Berlekamp-Massey algorithm
|
||
|
see https://ieeexplore.ieee.org/document/87857
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "vec128.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE348864F_AVX_bm(uint64_t * /*out*/, vec128 * /*in*/);
|
||
|
|
||
|
#endif
|
||
|
|