aboutsummaryrefslogtreecommitdiff
path: root/src/gen (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Add hex check to cli.J08nY2017-10-191-27/+30
|
* Add check_f for a string in the hex expansion of a curve param.J08nY2017-10-172-0/+120
|
* Cleanup includes and test setup/teardown.J08nY2017-10-172-2/+0
|
* Add tests for order.c.J08nY2017-10-171-1/+1
|
* Add several check_fs for standard security requirements.J08nY2017-10-174-2/+143
| | | | | | - Check for trace one(anomalous) curve, check for multiplicative transfer(embedding degree), factors of generator order and cm discriminant.
* Add tests for field.c.J08nY2017-10-152-3/+14
|
* Format and update README.J08nY2017-10-141-1/+0
|
* Make config_t *cfg a global variable.J08nY2017-10-1410-41/+6
| | | | | | The config is setup from parsing CLI options and then doesn't change for the whole duration of running ecgen, so it makes sense to make it a global variable.
* Add Doxygen @file directives to heaer files missing them.J08nY2017-10-041-0/+3
|
* Add GP interpreter check_f.J08nY2017-10-012-0/+66
|
* Add GP code interpretation as a gen_f option.J08nY2017-09-302-0/+139
|
* Add "offset_e state" param to gen_f and check_f.J08nY2017-09-302-3/+3
|
* Fixed generation with cofactor bound.J08nY2017-09-301-8/+23
| | | | | Might be slow, but should work. Needs to factor curve order. I wonder if I should store the factored curve order somewhere.
* Implement the curve non-zero discriminant as a check_f.J08nY2017-09-292-15/+8
|
* Remove gens_check_cofactor.J08nY2017-09-291-2/+0
|
* Introduce HAS_ARG(args) macro.J08nY2017-09-293-16/+6
|
* Pass arg_t to check_f.J08nY2017-09-291-0/+4
|
* Rename unroll_t -> unroll_f.J08nY2017-09-292-2/+2
|
* Rename gen_t -> gen_f.J08nY2017-09-296-30/+30
|
* Introduce check_t func.J08nY2017-09-291-6/+11
|
* Fix switch statement for debug build.J08nY2017-09-231-0/+1
|
* Move some enums around, make a general seed_unroll.J08nY2017-09-202-0/+11
|
* Introduce seed_e to mark seed_t with generation algo.J08nY2017-09-191-0/+6
|
* Fix copying a curve with seed stored.J08nY2017-09-191-2/+2
|
* Cleanup includes.J08nY2017-09-192-4/+0
|
* Run clang-format.J08nY2017-09-195-5/+1
|
* Move some files into src/misc.J08nY2017-09-1911-175/+10
|
* Implement a,b generation for ANSI X9.62 algo, Fp version.J08nY2017-09-191-0/+1
|
* Fix ANSI X9.62 binary field generation method.J08nY2017-09-191-6/+13
|
* Fix some of the issues with ANSI X9.62 f2m equation generation.J08nY2017-09-172-7/+3
|
* Move some stuff from general seed_t handling in gen/seed.[ch] to ↵J08nY2017-09-175-177/+3
| | | | exhaustive/ansi.[ch].
* Implement W/b computation for ANSI X9.62.J08nY2017-09-171-0/+30
|
* Remove binascii utilities, move seed manipulation to bits_t.J08nY2017-09-133-115/+61
|
* Add more utility functions to bits_t.J08nY2017-09-122-7/+6
|
* Paritially implement W computation in ANSI X9.62 algo.J08nY2017-09-072-2/+14
|
* Fix hashing of ANSI X9.62 seed.J08nY2017-08-312-25/+55
|
* Implement hashing of ANSI X9.62 seed.J08nY2017-08-312-20/+54
|
* Add utilities for PARI t_INT and char * conversion.J08nY2017-08-311-2/+8
|
* Implement ANSI X9.62 stdin input + tests.J08nY2017-08-311-18/+19
|
* Implement seed parsing for ANSI X9.62 algo. Refactor IO test layers.J08nY2017-08-302-20/+34
|
* Add err output stream, default to stderr.J08nY2017-08-304-8/+10
|
* Use correct allocation functions. Add try_free.J08nY2017-08-303-4/+4
|
* Add proper support for Koblitz curves generation.J08nY2017-07-202-2/+2
|
* Some cleanup of unused stuff.J08nY2017-07-201-1/+0
|
* Fix errors in point generation, for "nonprime" points mainly.J08nY2017-06-051-11/+14
|
* Fix formatting.J08nY2017-06-011-3/+2
|
* Renamed a bunch of generators.J08nY2017-06-015-26/+24
|
* Add generating of points on non-prime order subgroups of a curve.J08nY2017-06-014-158/+62
| | | | - Use --points=nonprime
* Move stuff related to generators to src/gen.J08nY2017-05-3116-0/+1861