aboutsummaryrefslogtreecommitdiff
path: root/src/math/poly.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix #15.J08nY2022-08-211-1/+1
|
* Add a set of Koblitz curves to be searched to speedup order computation.J08nY2018-01-191-1/+1
| | | | | | - There is not a lot of Koblitz curves out there, so they can be easily enumerated for the interesting field sizes and their orders computed offline.
* Update copyright year.J08nY2018-01-011-1/+1
|
* Add some more comments and docs, move exhaustive/seed.[ch] into math/J08nY2017-05-291-2/+2
|
* Added generating of points on all subgroups of a curve.J08nY2017-05-231-1/+1
| | | | | - Use --points=all, the number of points can be quite large however, it's 2^(num of prime subgroups of the curve).
* Added multi-threading support to invalid curve generationJ08nY2017-04-091-4/+4
| | | | | | | | | | | | 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)
* Make some stuff staticJ08nY2017-04-051-1/+1
|
* Added point generation:J08nY2017-02-141-1/+1
| | | | | | - 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)
* Seperated different generation methods into modules.J08nY2017-02-091-0/+2757
- Added Koblitz curve generation.