diff options
| author | J08nY | 2017-02-14 21:20:08 +0100 |
|---|---|---|
| committer | J08nY | 2017-02-14 21:20:08 +0100 |
| commit | 39c6155e0193ff69dcdf765e936487bfcf4f1b17 (patch) | |
| tree | 93230b214c64951ded6451f439f304ccca02b7e0 /src/io/input.c | |
| parent | 0c5ff628d52678bb44b9c595daf1289833d0e532 (diff) | |
| download | ecgen-39c6155e0193ff69dcdf765e936487bfcf4f1b17.tar.gz ecgen-39c6155e0193ff69dcdf765e936487bfcf4f1b17.tar.zst ecgen-39c6155e0193ff69dcdf765e936487bfcf4f1b17.zip | |
Added point generation:
- Prime order points for all prime divisors of curve order (all prime subgroups)
- Random points
- Minimal set of generators of the whole group (one or two points)
Diffstat (limited to 'src/io/input.c')
| -rw-r--r-- | src/io/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io/input.c b/src/io/input.c index 184924f..263364d 100644 --- a/src/io/input.c +++ b/src/io/input.c @@ -111,7 +111,7 @@ void input_init(const char *input) { } } -void input_quit() { +void input_quit(void) { if (in != NULL && in != stdout) { fclose(in); } |
