aboutsummaryrefslogtreecommitdiff
path: root/src/io/output.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixup issues in clang with pedantic.J08nY2025-03-271-10/+10
|
* Fix builds with makefile.J08nY2020-11-291-4/+4
|
* Add direcory names to include guards.J08nY2018-03-031-3/+3
|
* Drop CSV support.J08nY2018-02-271-25/+0
|
* Fix some memory leaks in threaded invalid generation.J08nY2018-02-031-5/+25
|
* Update copyright year.J08nY2018-01-011-1/+1
|
* Make config_t *cfg a global variable.J08nY2017-10-141-46/+24
| | | | | | 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.
* Fix debug_log of pari GENs, log timeout differently.J08nY2017-10-141-1/+1
|
* Document more files.J08nY2017-10-081-14/+14
|
* Move some files into src/misc.J08nY2017-09-191-1/+1
|
* Add err output stream, default to stderr.J08nY2017-08-301-0/+5
|
* Fix errors in point generation, for "nonprime" points mainly.J08nY2017-06-051-16/+23
|
* Renamed a bunch of generators.J08nY2017-06-011-1/+1
|
* Move stuff related to generators to src/gen.J08nY2017-05-311-1/+1
|
* Add some more comments and docs, move exhaustive/seed.[ch] into math/J08nY2017-05-291-1/+2
|
* Make debug macros really variadicJ08nY2017-05-231-7/+22
|
* Add debug logging with time, refactor allocationJ08nY2017-05-191-6/+23
|
* Add some docs, move them to /docs, clean-up includesJ08nY2017-04-271-18/+52
|
* Add output separators, invalid curve generation now outputs valid JSONJ08nY2017-04-261-23/+65
|
* Fix debug macroJ08nY2017-04-101-1/+1
|
* Fixed exhaustive curve generation for params with no curveJ08nY2017-04-101-2/+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-101-1/+7
| | | | | | - Fixed mutex and cond destroy - Added debug() macro - Renamed debug out stream to verbose
* Added multi-threading support to invalid curve generationJ08nY2017-04-091-10/+10
| | | | | | | | | | | | 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)
* Rename and reformatJ08nY2017-03-091-9/+9
|
* Added some docs + DoxyfileJ08nY2017-02-151-0/+3
|
* Implemented json output, also output format option (-t/--format)J08nY2017-02-151-12/+63
|
* Add some TODOs, fix buildJ08nY2017-02-151-1/+1
|
* Fixed invalid curve generation and prime order point generationJ08nY2017-02-141-1/+2
| | | | | - Wrong point order was saved (point.c:105) - Curve was not copied correctly (curve.c:32)
* Added point generation:J08nY2017-02-141-1/+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-2/+2
|
* Seperated different generation methods into modules.J08nY2017-02-091-0/+49
- Added Koblitz curve generation.