aboutsummaryrefslogtreecommitdiff
path: root/src/invalid/invalid.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Optimized invalid curve generation, added optional args to gen_tJ08nY2017-02-161-18/+85
| | | | | | | | | | | | | | - Optimized invalid curve generation - Invalid curve generation for secp256r1 now takes around 90minutes instead of 5hours as before - Optimized prime point generation(if only some small prime order points are needed -> points_primet) - Added a_once and b_once that prompt for parameter input and then set the input parameter repeatedly - Added optional args to gen_t functions - Integer input now ignores whitespace and doesnt errorneously prompt stdout when reading from file - Specified C standard(C11) + feature macros in code.
* Implemented json output, also output format option (-t/--format)J08nY2017-02-151-2/+2
|
* Fixed invalid curve generation and prime order point generationJ08nY2017-02-141-0/+1
| | | | | - Wrong point order was saved (point.c:105) - Curve was not copied correctly (curve.c:32)
* Added point generation:J08nY2017-02-141-7/+5
| | | | | | - 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-11/+139
|
* Properly split into submodulesJ08nY2017-02-101-0/+24
|
* Seperated different generation methods into modules.J08nY2017-02-091-0/+5
- Added Koblitz curve generation.