aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix travis releasing a binary wit coverage.J08nY2017-10-041-3/+5
|
* Fix some Makefile variables.J08nY2017-07-201-4/+4
|
* Fix Travis CI coverage testing.J08nY2017-07-191-1/+1
|
* Enable building with GCC test options for gcov.J08nY2017-07-191-0/+6
|
* Add notice about not finished/implemented parts to READMEJ08nY2017-05-201-2/+0
| | | | | | - Also to --help output - Also add notes about used libraries and their licenses - Fix CMake build by adding src/util/*.c
* Add unrolls to invalid generation methodJ08nY2017-04-121-1/+1
|
* Add basic testsJ08nY2017-04-111-1/+1
|
* Fix Makefile (DEBUG)J08nY2017-04-101-3/+3
|
* 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)
* Fix ellinit leak, also compile with pari 2.9.2 for ellsea fixJ08nY2017-04-061-4/+4
|
* Update README and MakefileJ08nY2017-04-051-2/+8
|
* Clean up MakefilesJ08nY2017-04-051-2/+4
|
* Removed GP compilation, added econvert targetJ08nY2017-04-051-25/+13
|
* Added sha1 implementation for ANSI X9.62 verifiably random algo.J08nY2017-03-161-1/+1
|
* fixed leak in io/output.cJ08nY2017-02-281-1/+1
|
* Added irreducibility check, equation_quit, gens_oneJ08nY2017-02-281-15/+2
| | | | | | | - irreducibility check in field_input for f2m - equation_quit frees stuff possibly allocated by a_once and b_once - gens_one requests the curve to have only one generator - renamed some base generators to _any from _init, as they dont really init anythong, just do no checks
* Fix libpari-dev version in travisJ08nY2017-02-171-1/+1
|
* Make travis use right CCJ08nY2017-02-171-9/+9
|
* fixed makefile for travisJ08nY2017-02-171-2/+2
|
* Optimized invalid curve generation, added optional args to gen_tJ08nY2017-02-161-4/+5
| | | | | | | | | | | | | | - 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.
* Properly split into submodulesJ08nY2017-02-101-2/+2
|
* Seperated different generation methods into modules.J08nY2017-02-091-7/+9
| | | | - Added Koblitz curve generation.
* Moved to a more modular generation processJ08nY2017-02-071-1/+1
| | | | | | | | | | | | | | Curves are now generated in a loop through a func. pointer array, built from cli args. - Allows complex behavior from simple funcs - a func can "rewind" previous generation steps, if it can not succesfuly guarantee that it will generate a curve/param/point with property requested. - e.g. curve_nonzero rewinds [b, a, field] (returns -3) if the curve specified by [field, a, b] has a zero discriminant. This way, [field, a, b] can be generated/produced/input again and a curve might get constructed that will be nonzero.
* Added prime order curve generation.J08nY2017-02-061-7/+12
|
* ecgen v0.2: major rewrite0.2.0J08nY2017-02-051-0/+72