mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
14 lines
290 B
C
14 lines
290 B
C
|
#ifndef PQCLEAN_MCELIECE460896_CLEAN_BM_H
|
||
|
#define PQCLEAN_MCELIECE460896_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_MCELIECE460896_CLEAN_bm(gf * /*out*/, gf * /*s*/);
|
||
|
|
||
|
#endif
|
||
|
|