rand_poly initial setup

This commit is contained in:
infidel
2022-04-16 15:38:03 +07:00
parent aecf8bb070
commit b8b1eeeeea
11 changed files with 107 additions and 3 deletions

11
tests/test_util.h Normal file
View File

@@ -0,0 +1,11 @@
#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