aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fixed build on macOS via posix-macos-addonsKirill A. Korinsky2021-09-221-1/+11
| | | | | | | This commit introduced support of macOS by using [posix-macos-addons](https://github.com/stanislaw/posix-macos-addons). Closes: https://github.com/J08nY/ecgen/issues/7
* Fix builds with makefile.J08nY2020-11-291-2/+2
|
* Enable LTO.J08nY2019-03-261-2/+2
|
* Separate point object functions into obj.J08nY2018-03-281-1/+1
|
* Fix CMake build.J08nY2018-02-271-3/+0
|
* Implement base of brainpool algo.J08nY2017-12-131-1/+1
|
* Add lib/CMakeLists.txt.J08nY2017-10-141-10/+10
|
* Move some files into src/misc.J08nY2017-09-191-1/+1
|
* Add Makefiles and CMakelists for tests.J08nY2017-08-291-3/+5
|
* Move stuff related to generators to src/gen.J08nY2017-05-311-1/+1
|
* Add CMake to travis scriptJ08nY2017-05-201-1/+1
|
* Add notice about not finished/implemented parts to READMEJ08nY2017-05-201-1/+1
| | | | | | - Also to --help output - Also add notes about used libraries and their licenses - Fix CMake build by adding src/util/*.c
* Add basicc exhaustive generation testJ08nY2017-04-111-1/+1
|
* 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 curve generation over binary fields, cleanup CMakelistsJ08nY2017-04-061-2/+2
|
* Removed GP compilation, added econvert targetJ08nY2017-04-051-15/+9
|
* Add travis to readmeJ08nY2017-02-171-3/+1
|
* Fix libpari-dev version in travisJ08nY2017-02-171-0/+1
|
* fixed makefile for travisJ08nY2017-02-171-2/+2
|
* Optimized invalid curve generation, added optional args to gen_tJ08nY2017-02-161-4/+4
| | | | | | | | | | | | | | - 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-1/+1
|
* Properly split into submodulesJ08nY2017-02-101-2/+3
|
* Seperated different generation methods into modules.J08nY2017-02-091-1/+1
| | | | - 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-3/+8
|
* ecgen v0.2: major rewrite0.2.0J08nY2017-02-051-0/+23