aboutsummaryrefslogtreecommitdiff
path: root/src/ecgen.c
Commit message (Collapse)AuthorAgeFilesLines
* Bump version.HEADmasterJ08nY2024-12-031-2/+2
|
* Handle the cases found by unused options.J08nY2024-11-301-0/+1
|
* Silence criterion build.J08nY2024-11-291-48/+3
|
* Bump version.J08nY2021-09-231-2/+2
|
* Bump version.J08nY2021-04-221-3/+3
|
* Bump version.J08nY2021-04-101-2/+2
|
* Bump version.0.7.3J08nY2018-11-271-2/+2
|
* Add git commit to built binary.J08nY2018-07-131-1/+10
|
* Add option to specify order by factors.J08nY2018-07-121-0/+7
|
* Use exhaustive generation of some params in CM generation.J08nY2018-07-091-2/+3
|
* Implement complex multiplication even for composite order curves.J08nY2018-07-071-1/+1
|
* Bump version.0.7.2J08nY2018-07-041-2/+2
|
* Print PARI debugging stuff on DEBUG=1.J08nY2018-07-011-0/+4
|
* Bump version.0.7.1J08nY2018-04-301-2/+2
|
* Bump version.0.7.0J08nY2018-04-101-2/+2
|
* Bump version0.6.5J08nY2018-03-051-2/+2
| | | | - Also fix Koblitz order insertion.
* Fix Valgrind warnings about timeout struct allocations.J08nY2018-02-031-0/+2
| | | | | | - Make them dynamically allocated, per thread, not on stack. - Also fix a small invalid read of deallocated generator point.
* Add curve twists to CLI and update options in README.J08nY2018-01-181-1/+0
|
* Update copyright year.J08nY2018-01-011-2/+2
|
* Bump version.0.6.3J08nY2017-12-201-2/+2
|
* Bump version: v0.6.20.6.2J08nY2017-11-071-2/+2
|
* Cleanup the CLI options parsing and enums a bit.J08nY2017-10-191-2/+2
|
* Format and update README.J08nY2017-10-141-4/+4
|
* Make config_t *cfg a global variable.J08nY2017-10-141-13/+14
| | | | | | The config is setup from parsing CLI options and then doesn't change for the whole duration of running ecgen, so it makes sense to make it a global variable.
* Move config_t cfg into config.c.J08nY2017-10-141-1/+0
|
* Bump version0.6.1J08nY2017-10-041-2/+2
|
* Add timeout.[ch] and timeout macro.J08nY2017-10-041-0/+4
|
* Version bump.0.6.0J08nY2017-09-191-2/+2
|
* Add some more comments and docs, move exhaustive/seed.[ch] into math/J08nY2017-05-291-5/+8
|
* Add notice about not finished/implemented parts to READMEJ08nY2017-05-201-3/+5
| | | | | | - Also to --help output - Also add notes about used libraries and their licenses - Fix CMake build by adding src/util/*.c
* Add some docs, move them to /docs, clean-up includesJ08nY2017-04-271-3/+1
|
* Add output separators, invalid curve generation now outputs valid JSONJ08nY2017-04-261-2/+1
|
* Fix loading modular db (dont error when seadata not present)J08nY2017-04-191-1/+3
|
* Load modular polynomial db in main threadJ08nY2017-04-181-2/+7
|
* Version bump0.5.0J08nY2017-04-181-2/+2
|
* Version bump0.4.0J08nY2017-04-071-2/+2
|
* Fix binary field curve generation, move config into config.hJ08nY2017-04-071-1/+2
|
* Fix curve generation over binary fields, cleanup CMakelistsJ08nY2017-04-061-1/+2
|
* Fix some leaks, add option to specify PARI stack sizeJ08nY2017-04-051-1/+1
|
* Added option to request uniquely generated curves.J08nY2017-02-281-1/+1
| | | | -u --unique
* Added irreducibility check, equation_quit, gens_oneJ08nY2017-02-281-0/+1
| | | | | | | - irreducibility check in field_input for f2m - equation_quit frees stuff possibly allocated by a_once and b_once - gens_one requests the curve to have only one generator - renamed some base generators to _any from _init, as they dont really init anythong, just do no checks
* ecgen v0.3: some cleanup and version bumpJ08nY2017-02-191-3/+12
|
* Optimized invalid curve generation, added optional args to gen_tJ08nY2017-02-161-1/+2
| | | | | | | | | | | | | | - Optimized invalid curve generation - Invalid curve generation for secp256r1 now takes around 90minutes instead of 5hours as before - Optimized prime point generation(if only some small prime order points are needed -> points_primet) - Added a_once and b_once that prompt for parameter input and then set the input parameter repeatedly - Added optional args to gen_t functions - Integer input now ignores whitespace and doesnt errorneously prompt stdout when reading from file - Specified C standard(C11) + feature macros in code.
* Added some docs + DoxyfileJ08nY2017-02-151-6/+11
|
* Add some TODOs, fix buildJ08nY2017-02-151-2/+2
|
* Added point generation:J08nY2017-02-141-2/+2
| | | | | | - 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)
* Implemented invalid curve generationJ08nY2017-02-141-5/+5
|
* Properly split into submodulesJ08nY2017-02-101-19/+44
|
* Seperated different generation methods into modules.J08nY2017-02-091-16/+17
| | | | - Added Koblitz curve generation.
* Moved to a more modular generation processJ08nY2017-02-071-37/+15
| | | | | | | | | | | | | | Curves are now generated in a loop through a func. pointer array, built from cli args. - Allows complex behavior from simple funcs - a func can "rewind" previous generation steps, if it can not succesfuly guarantee that it will generate a curve/param/point with property requested. - e.g. curve_nonzero rewinds [b, a, field] (returns -3) if the curve specified by [field, a, b] has a zero discriminant. This way, [field, a, b] can be generated/produced/input again and a curve might get constructed that will be nonzero.