14 lines
293 B
C
14 lines
293 B
C
|
#ifndef PQCLEAN_MCELIECE460896F_CLEAN_BM_H
|
||
|
#define PQCLEAN_MCELIECE460896F_CLEAN_BM_H
|
||
|
/*
|
||
|
This file is for the Berlekamp-Massey algorithm
|
||
|
see http://crypto.stanford.edu/~mironov/cs359/massey.pdf
|
||
|
*/
|
||
|
|
||
|
#include "gf.h"
|
||
|
|
||
|
void PQCLEAN_MCELIECE460896F_CLEAN_bm(gf * /*out*/, gf * /*s*/);
|
||
|
|
||
|
#endif
|
||
|
|