b3f9d4f8d6
* Add McEliece reference implementations * Add Vec implementations of McEliece * Add sse implementations * Add AVX2 implementations * Get rid of stuff not supported by Mac ABI * restrict to two cores * Ditch .data files * Remove .hidden from all .S files * speed up duplicate consistency tests by batching * make cpuinfo more robust * Hope to stabilize macos cpuinfo without ccache * Revert "Hope to stabilize macos cpuinfo without ccache" This reverts commit 6129c3cabe1abbc8b956bc87e902a698e32bf322. * Just hardcode what's available at travis * Fixed-size types in api.h * namespace all header files in mceliece * Ditch operations.h * Get rid of static inline functions * fixup! Ditch operations.h
34 lines
739 B
C
34 lines
739 B
C
/*
|
|
This file is for evaluating a polynomial at one or more field elements
|
|
*/
|
|
#include "root.h"
|
|
|
|
#include "params.h"
|
|
|
|
/* input: polynomial f and field element a */
|
|
/* return f(a) */
|
|
gf PQCLEAN_MCELIECE8192128F_CLEAN_eval(gf *f, gf a) {
|
|
int i;
|
|
gf r;
|
|
|
|
r = f[ SYS_T ];
|
|
|
|
for (i = SYS_T - 1; i >= 0; i--) {
|
|
r = PQCLEAN_MCELIECE8192128F_CLEAN_gf_mul(r, a);
|
|
r = PQCLEAN_MCELIECE8192128F_CLEAN_gf_add(r, f[i]);
|
|
}
|
|
|
|
return r;
|
|
}
|
|
|
|
/* input: polynomial f and list of field elements L */
|
|
/* output: out = [ f(a) for a in L ] */
|
|
void PQCLEAN_MCELIECE8192128F_CLEAN_root(gf *out, gf *f, gf *L) {
|
|
int i;
|
|
|
|
for (i = 0; i < SYS_N; i++) {
|
|
out[i] = PQCLEAN_MCELIECE8192128F_CLEAN_eval(f, L[i]);
|
|
}
|
|
}
|
|
|