summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version0.6.5J08nY2018-03-053-3/+4
| | | | - Also fix Koblitz order insertion.
* Fix Travis build.J08nY2018-03-031-1/+1
|
* Add some better gcc optimization options to Makefile.J08nY2018-03-034-15/+36
|
* Use the Koblitz order store to lookup a curve order fast.J08nY2018-03-035-11/+39
|
* Test cofactor generation a bit more.J08nY2018-03-031-0/+1
|
* Fix generation with set cofactor.J08nY2018-03-032-5/+5
|
* Add direcory names to include guards.J08nY2018-03-0333-99/+99
|
* Refactor point generation tests.J08nY2018-03-0314-198/+206
|
* Rewrite generator and point generation code.J08nY2018-03-0334-1078/+1008
|
* Add tests for Koblitz order store.J08nY2018-02-274-5/+55
|
* Fix CMake build.J08nY2018-02-271-3/+0
|
* Merge branch 'feature/drop-csv-support'J08nY2018-02-2720-395/+142
|\
| * Remove unnecessary test data files.feature/drop-csv-supportJ08nY2018-02-274-32/+0
| |
| * Update parson to its current git head: 387c566.J08nY2018-02-272-85/+111
| | | | | | | | https://github.com/kgabis/parson/commit/387c5665f6b20faa535a7f782dcaa49390963366
| * Drop CSV support.J08nY2018-02-2714-278/+31
|/
* Fix memory leak in brainpool and brainpool_rfc methods.J08nY2018-02-032-9/+9
|
* Fix invalid write in check.cJ08nY2018-02-031-1/+2
|
* Fix some memory leaks in threaded invalid generation.J08nY2018-02-035-14/+37
|
* Fix Valgrind warnings about timeout struct allocations.J08nY2018-02-036-16/+55
| | | | | | - Make them dynamically allocated, per thread, not on stack. - Also fix a small invalid read of deallocated generator point.
* Compute twist order, as it is obviously known.J08nY2018-01-193-6/+18
|
* Add a set of Koblitz curves to be searched to speedup order computation.J08nY2018-01-195-9/+103
| | | | | | - There is not a lot of Koblitz curves out there, so they can be easily enumerated for the interesting field sizes and their orders computed offline.
* Add some more basic tests for coverage.J08nY2018-01-187-1/+174
|
* Cleanup includes.0.6.4J08nY2018-01-185-5/+0
|
* Add curve twists to CLI and update options in README.J08nY2018-01-1811-19/+81
|
* Add utilities to create random curve twists.J08nY2018-01-185-0/+102
|
* Fix binary curve generation.J08nY2018-01-182-2/+2
|
* Update copyright year.J08nY2018-01-0166-67/+67
|
* Build with gcc-7 on Travis.J08nY2017-12-201-2/+2
|
* Bump version.0.6.3J08nY2017-12-203-4/+4
|
* Fix running out of stack in embedding degree computation.J08nY2017-12-205-20/+32
| | | | - It is a simple Fp_order computation, why the dumb algo? :D
* Only do a short test on Travis.J08nY2017-12-182-3/+6
|
* Add more Brainpool tests, fix some.J08nY2017-12-182-1/+11
|
* Fix Travis output.J08nY2017-12-181-0/+2
|
* Make Travis wait for the slow unittests.J08nY2017-12-171-1/+1
|
* Do not skip Brainpool RFC tests.J08nY2017-12-173-3/+2
|
* Merge branch 'feature/brainpool-algo'J08nY2017-12-1725-134/+1208
|\
| * Add seadata to Travis.feature/brainpool-algoJ08nY2017-12-176-8/+16
| |
| * Fix ANSI generation.J08nY2017-12-171-0/+6
| |
| * Skip Brainpool RFC tests.J08nY2017-12-171-1/+1
| |
| * Fix gens_get_embedding and brainpool RFC generation.J08nY2017-12-176-18/+16
| | | | | | | | | | - The Brainpool RFC generation still uses way too much stack, so it is likely leaking it somewhere, but not sure where.
| * Allow larger PARI stack for tests.J08nY2017-12-172-2/+1
| |
| * Fix some errors in brainpool rfc generation (4/7 RFC curves pass).J08nY2017-12-1711-74/+262
| |
| * Fix brainpool(+RFC) generation of primes.J08nY2017-12-156-10/+193
| |
| * Add basis of brainpool RFC generation (equation part).J08nY2017-12-148-64/+176
| |
| * Fix brainpool hashing algo.J08nY2017-12-132-10/+29
| |
| * Fix brainpool prime generation, add skeleton of brainpool RFC generation.J08nY2017-12-136-20/+143
| |
| * Add tests for brainpool generation, and fix it.J08nY2017-12-135-19/+114
| |
| * Fix unit tests failing wih DDEBUG.J08nY2017-12-131-1/+5
| |
| * Implement base of brainpool algo.J08nY2017-12-1314-42/+304
| |
| * Run clang-format.J08nY2017-11-084-21/+14
| |