12 lines
187 B
C
12 lines
187 B
C
|
#ifndef TEST_UTIL_H
|
||
|
#define TEST_UTIL_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "types.h"
|
||
|
|
||
|
void rand_poly(NtruIntPoly *a, uint16_t N, uint16_t modulus);
|
||
|
|
||
|
int main(int argc, char** argv);
|
||
|
|
||
|
#endif
|