aboutsummaryrefslogtreecommitdiff
path: root/src/io/cli.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixup issues in clang with pedantic.J08nY2025-03-271-2/+2
|
* Add option to specify order by factors.J08nY2018-07-121-0/+10
|
* Add direcory names to include guards.J08nY2018-03-031-3/+3
|
* Update copyright year.J08nY2018-01-011-1/+1
|
* Add some more comments and docs, move exhaustive/seed.[ch] into math/J08nY2017-05-291-0/+14
|
* Add notice about not finished/implemented parts to READMEJ08nY2017-05-201-3/+3
| | | | | | - Also to --help output - Also add notes about used libraries and their licenses - Fix CMake build by adding src/util/*.c
* Begin CM workJ08nY2017-04-211-0/+1
|
* Fix binary field curve generation, move config into config.hJ08nY2017-04-071-42/+0
|
* Fix curve generation over binary fields, cleanup CMakelistsJ08nY2017-04-061-1/+1
|
* Fix some leaks, add option to specify PARI stack sizeJ08nY2017-04-051-1/+2
|
* Added option to request no points on the curveJ08nY2017-03-251-1/+1
| | | | --points=none
* Rename and reformatJ08nY2017-03-091-0/+2
|
* Default to prime pointsJ08nY2017-03-011-1/+1
|
* Added requested points type option + count optionJ08nY2017-03-011-0/+6
|
* Added option to request uniquely generated curves.J08nY2017-02-281-1/+8
| | | | -u --unique
* Optimized invalid curve generation, added optional args to gen_tJ08nY2017-02-161-1/+2
| | | | | | | | | | | | | | - 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.
* Added some docs + DoxyfileJ08nY2017-02-151-0/+3
|
* Implemented json output, also output format option (-t/--format)J08nY2017-02-151-0/+2
|
* Added point generation:J08nY2017-02-141-0/+2
| | | | | | - 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/+40
- Added Koblitz curve generation.