aboutsummaryrefslogtreecommitdiff
path: root/src/invalid
Commit message (Collapse)AuthorAgeFilesLines
* Handle the cases found by unused options.J08nY2024-11-301-1/+1
|
* Add best-effort warnings for ignored CLI options.J08nY2024-11-301-1/+6
|
* Fix builds with makefile.J08nY2020-11-291-1/+0
|
* Fix threaded invalid curve generation.J08nY2019-03-072-13/+26
|
* Fix Travis.J08nY2018-07-101-1/+0
|
* Implement computation of curve metadata(j-invariant, disc, frobenius, cm disc).J08nY2018-06-301-0/+2
|
* More tests and better handling for the invalid range option.J08nY2018-03-281-2/+4
|
* Add option to generate invalid curves with a range of orders.J08nY2018-03-281-2/+22
|
* Separate curve object functions into obj.J08nY2018-03-282-0/+2
|
* Add option to generate only some parameters randomly and input others.J08nY2018-03-241-5/+9
|
* Add direcory names to include guards.J08nY2018-03-032-6/+6
|
* Fix some memory leaks in threaded invalid generation.J08nY2018-02-031-9/+6
|
* Fix Valgrind warnings about timeout struct allocations.J08nY2018-02-031-0/+3
| | | | | | - Make them dynamically allocated, per thread, not on stack. - Also fix a small invalid read of deallocated generator point.
* Update copyright year.J08nY2018-01-014-4/+4
|
* Add hex check to cli.J08nY2017-10-192-5/+10
|
* Cleanup the CLI options parsing and enums a bit.J08nY2017-10-191-1/+1
|
* Format and update README.J08nY2017-10-143-14/+13
|
* Make config_t *cfg a global variable.J08nY2017-10-143-40/+38
| | | | | | 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.
* Cleanup invalid and exhaustive generation.J08nY2017-10-042-80/+74
|
* Add new/create/free funcs for malloced exhaustive_t.J08nY2017-09-302-17/+24
|
* Implement the curve non-zero discriminant as a check_f.J08nY2017-09-291-8/+15
|
* Rename unroll_t -> unroll_f.J08nY2017-09-291-1/+1
|
* Rename gen_t -> gen_f.J08nY2017-09-291-5/+5
|
* Introduce check_t func.J08nY2017-09-293-30/+38
|
* Move some files into src/misc.J08nY2017-09-192-2/+2
|
* Use correct allocation functions. Add try_free.J08nY2017-08-301-2/+2
|
* Renamed a bunch of generators.J08nY2017-06-012-3/+3
|
* Move stuff related to generators to src/gen.J08nY2017-05-313-9/+9
|
* Add some more comments and docs, move exhaustive/seed.[ch] into math/J08nY2017-05-291-2/+2
|
* Add GENERATOR and UNROLL macro, use themJ08nY2017-05-231-16/+17
|
* Add debug logging with time, refactor allocationJ08nY2017-05-191-42/+30
|
* Fixed unrolls / unique generator curve generatonJ08nY2017-05-072-12/+24
| | | | | | - Also added some tests to catch some regressions like this early - Fixed double free in gens, also some funky stuff with gunclone and obj_free in curve_free
* Add some docs, move them to /docs, clean-up includesJ08nY2017-04-272-2/+0
|
* Add output separators, invalid curve generation now outputs valid JSONJ08nY2017-04-261-0/+9
|
* Load modular polynomial db in main threadJ08nY2017-04-182-3/+3
|
* Change multi-threaded SEA back to general algoJ08nY2017-04-181-8/+1
|
* Try to fix multi-threaded SEAJ08nY2017-04-161-1/+9
|
* Change invalid curve generation thread argument passingJ08nY2017-04-163-7/+8
|
* Add unrolls to invalid generation methodJ08nY2017-04-121-9/+10
|
* Added unroll functions, to generalize going back in exhaustive generationJ08nY2017-04-103-9/+13
|
* Fix debug macroJ08nY2017-04-101-1/+1
|
* Fixed exhaustive curve generation for params with no curveJ08nY2017-04-101-0/+2
| | | | | | | - Added some debug prints - Fixed debug macro - Temporarily disabled obj_free in exhaustive_gen until roll_t arrives
* Moved curve output in multi-threaded invalid curve generation to master threadJ08nY2017-04-103-30/+34
| | | | | | - Fixed mutex and cond destroy - Added debug() macro - Renamed debug out stream to verbose
* Added multi-threading support to invalid curve generationJ08nY2017-04-094-40/+253
| | | | | | | | | | | | Invalid curve generation now supports multi-threading via pthreads, use the --threads= option. - Changed some function params to const, where possible. - Added *_new_copy, *_clone and *_new_clone functions to curve_t*, point_t* and point_t** - Made cfg->bits unsigned long - Made order_any gcopy the generated order(as it can be a clone and screw up stuff later)
* Fix binary field curve generation, move config into config.hJ08nY2017-04-072-1/+2
|
* Fix ellinit leak, also compile with pari 2.9.2 for ellsea fixJ08nY2017-04-061-0/+1
|
* Fix some leaks, add option to specify PARI stack sizeJ08nY2017-04-051-1/+2
|
* Make some stuff staticJ08nY2017-04-051-4/+4
|
* Add exhaustive_gen_retry, fix infinite loop, add retry limit to exhaustive genJ08nY2017-04-051-1/+2
|
* Fixed inalid curve generation segfaultJ08nY2017-03-091-0/+1
|