mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
14 lines
296 B
C
14 lines
296 B
C
|
#ifndef PQCLEAN_MCELIECE6960119F_CLEAN_BM_H
|
||
|
#define PQCLEAN_MCELIECE6960119F_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_MCELIECE6960119F_CLEAN_bm(gf * /*out*/, gf * /*s*/);
|
||
|
|
||
|
#endif
|
||
|
|