18 lines
339 B
C
18 lines
339 B
C
|
#ifndef PQCLEAN_MCELIECE348864F_SSE_BM_H
|
||
|
#define PQCLEAN_MCELIECE348864F_SSE_BM_H
|
||
|
/*
|
||
|
This file is for the inversion-free Berlekamp-Massey algorithm
|
||
|
see https://ieeexplore.ieee.org/document/87857
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "params.h"
|
||
|
#include "vec128.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE348864F_SSE_bm(uint64_t *out, vec128 *in);
|
||
|
|
||
|
#endif
|
||
|
|