mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-27 01:41:40 +00:00
15 lines
337 B
C
15 lines
337 B
C
#ifndef PQCLEAN_MCELIECE8192128_CLEAN_ROOT_H
|
|
#define PQCLEAN_MCELIECE8192128_CLEAN_ROOT_H
|
|
/*
|
|
This file is for evaluating a polynomial at one or more field elements
|
|
*/
|
|
|
|
|
|
#include "gf.h"
|
|
|
|
gf PQCLEAN_MCELIECE8192128_CLEAN_eval(gf * /*f*/, gf /*a*/);
|
|
void PQCLEAN_MCELIECE8192128_CLEAN_root(gf * /*out*/, gf * /*f*/, gf * /*L*/);
|
|
|
|
#endif
|
|
|