aboutsummaryrefslogtreecommitdiff
path: root/src/exhaustive (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Format and update README.J08nY2017-10-142-4/+5
|
* Make config_t *cfg a global variable.J08nY2017-10-145-53/+36
| | | | | | 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-3/+9
|
* Document more files.J08nY2017-10-082-27/+4
|
* Cleanup invalid and exhaustive generation.J08nY2017-10-041-28/+1
|
* Fix ANSI X9.62 method not respecting -p or --cofactor options.J08nY2017-10-041-1/+7
|
* Merge branch 'feature/alarm-timeout'J08nY2017-10-041-1/+10
|\
| * Add per-param timeout option.J08nY2017-10-041-1/+10
| |
* | Use verbose_log in exhaustive.cJ08nY2017-10-041-8/+6
|/
* Add GP code interpretation as a gen_f option.J08nY2017-09-301-2/+2
|
* Add "offset_e state" param to gen_f and check_f.J08nY2017-09-302-4/+5
|
* Add new/create/free funcs for malloced exhaustive_t.J08nY2017-09-302-1/+62
|
* Implement the curve non-zero discriminant as a check_f.J08nY2017-09-293-12/+37
|
* Introduce HAS_ARG(args) macro.J08nY2017-09-293-12/+9
|
* Pass arg_t to check_f.J08nY2017-09-291-3/+8
|
* Add check_t that contains more check_f functions.J08nY2017-09-294-4/+58
|
* Rename check_t -> check_f.J08nY2017-09-292-4/+4
|
* Rename unroll_t -> unroll_f.J08nY2017-09-292-5/+5
|
* Rename gen_t -> gen_f.J08nY2017-09-293-7/+7
|
* Introduce check_t func.J08nY2017-09-293-33/+55
|
* Move some enums around, make a general seed_unroll.J08nY2017-09-203-28/+22
|
* Introduce seed_e to mark seed_t with generation algo.J08nY2017-09-191-10/+14
|
* Cleanup includes.J08nY2017-09-193-5/+11
|
* Run clang-format.J08nY2017-09-194-13/+15
|
* Move some files into src/misc.J08nY2017-09-196-7/+7
|
* Output seed in JSON format output.J08nY2017-09-192-3/+3
|
* Fix a segfault in ANSI generation, fix ISO C initializer braces.J08nY2017-09-191-0/+1
|
* Implement a,b generation for ANSI X9.62 algo, Fp version.J08nY2017-09-191-8/+37
|
* Fix ANSI X9.62 binary field generation method.J08nY2017-09-193-10/+34
|
* Fix some of the issues with ANSI X9.62 f2m equation generation.J08nY2017-09-171-42/+58
|
* Move some stuff from general seed_t handling in gen/seed.[ch] to ↵J08nY2017-09-173-7/+186
| | | | exhaustive/ansi.[ch].
* Implement seed parsing for ANSI X9.62 algo. Refactor IO test layers.J08nY2017-08-301-2/+1
|
* Add err output stream, default to stderr.J08nY2017-08-302-4/+4
|
* Use correct allocation functions. Add try_free.J08nY2017-08-302-4/+4
|
* Fix formatting.J08nY2017-08-291-2/+2
|
* Add proper support for Koblitz curves generation.J08nY2017-07-201-1/+11
|
* Fix formatting.J08nY2017-06-011-1/+0
|
* Renamed a bunch of generators.J08nY2017-06-013-15/+16
|
* Add generating of points on non-prime order subgroups of a curve.J08nY2017-06-011-0/+4
| | | | - Use --points=nonprime
* Move stuff related to generators to src/gen.J08nY2017-05-315-10/+54
|
* Add some more comments and docs, move exhaustive/seed.[ch] into math/J08nY2017-05-295-191/+34
|
* Added generating of points on all subgroups of a curve.J08nY2017-05-231-0/+3
| | | | | - Use --points=all, the number of points can be quite large however, it's 2^(num of prime subgroups of the curve).
* Add GENERATOR and UNROLL macro, use themJ08nY2017-05-231-19/+23
|
* Add debug logging with time, refactor allocationJ08nY2017-05-193-34/+15
|
* Fixed unrolls / unique generator curve generatonJ08nY2017-05-071-50/+50
| | | | | | - 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
* Pad output hex to field size (both json and csv)J08nY2017-05-021-4/+6
|
* Raise precision in anomalous curve generationJ08nY2017-05-011-2/+2
|
* Merge branch 'cm'J08nY2017-05-014-3/+241
|\
| * Insert the curve order to ell structure on anomalous_orderJ08nY2017-04-211-0/+1
| |
| * Add anomalous curve generationJ08nY2017-04-213-27/+97
| |