16 lines
340 B
C
16 lines
340 B
C
|
#ifndef PQCLEAN_MCELIECE6960119F_SSE_BM_H
|
||
|
#define PQCLEAN_MCELIECE6960119F_SSE_BM_H
|
||
|
/*
|
||
|
This file is for the inversion-free Berlekamp-Massey algorithm
|
||
|
see https://ieeexplore.ieee.org/document/87857
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "params.h"
|
||
|
#include "vec128.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE6960119F_SSE_bm(vec128 * /*out*/, vec128 /*in*/[][ GFBITS ]);
|
||
|
|
||
|
#endif
|
||
|
|