diff options
| author | J08nY | 2017-02-15 21:52:32 +0100 |
|---|---|---|
| committer | J08nY | 2017-02-15 21:52:32 +0100 |
| commit | 5d9d12811441930169b0517318dcf21c51b72e2d (patch) | |
| tree | bb7f4ed92f5fd9a253c238519525dae93896786f /src/math/poly.h | |
| parent | 4190b8e35a781a08f1749448f51cb4ea798f5588 (diff) | |
| download | ecgen-5d9d12811441930169b0517318dcf21c51b72e2d.tar.gz ecgen-5d9d12811441930169b0517318dcf21c51b72e2d.tar.zst ecgen-5d9d12811441930169b0517318dcf21c51b72e2d.zip | |
Added some docs + Doxyfile
Diffstat (limited to 'src/math/poly.h')
| -rw-r--r-- | src/math/poly.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/math/poly.h b/src/math/poly.h index 990c818..c69313f 100644 --- a/src/math/poly.h +++ b/src/math/poly.h @@ -2,13 +2,16 @@ * ecgen, tool for generating Elliptic curve domain parameters * Copyright (C) 2017 J08nY */ +/** + * @file poly.h + */ #ifndef ECGEN_POLY_H #define ECGEN_POLY_H #include <pari/pari.h> #include <stdbool.h> -typedef struct polynomial { +typedef struct polynomial_t { int m; int e1; int e2; |
