summaryrefslogtreecommitdiff
path: root/src/io/input.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Optimized invalid curve generation, added optional args to gen_tJ08nY2017-02-161-25/+22
| | | | | | | | | | | | | | - 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.
* Add some TODOs, fix buildJ08nY2017-02-151-3/+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)
* Implemented invalid curve generationJ08nY2017-02-141-22/+25
|
* Properly split into submodulesJ08nY2017-02-101-2/+2
|
* Seperated different generation methods into modules.J08nY2017-02-091-0/+115
- Added Koblitz curve generation.