aboutsummaryrefslogtreecommitdiff
path: root/src/math/random.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move stuff related to generators to src/gen.J08nY2017-05-311-39/+0
|
* 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-0/+19
| | | | | - 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-2/+2
| | | | | | | | | | | | 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)
* Added some docs + DoxyfileJ08nY2017-02-151-0/+3
|
* 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/+17
- Added Koblitz curve generation.