summaryrefslogtreecommitdiff
path: root/ecc-curve448.c
Commit message (Collapse)AuthorAgeFilesLines
* Use GMP functions mpn_cnd_add_n, mpn_cnd_sub_n and mpn_cnd_swap.use-mpn_cnd-functionsNiels Möller2020-10-281-2/+2
|
* Shared implementation of ecc_mod_pow_2k and related functionsNiels Möller2020-10-141-35/+0
|
* Delete definition of ecc->gNiels Möller2020-01-251-1/+0
|
* ecc: rename functions to contain curve names instead of bitsDmitry Eremin-Solenikov2020-01-101-17/+17
| | | | | | | | Rename curve functions to use curve names instead of just bits. Otherwise function names can easily become confusing after adding other curves. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
* ecc: prefix optimized ECC function names with underscoreDmitry Eremin-Solenikov2020-01-101-1/+1
| | | | | | | There is no need to keep optimized ECC functions in public namespace (nettle_*), move them to internal namespace (_nettle_*). Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
* ecc: rename source files with curves dataDmitry Eremin-Solenikov2020-01-101-0/+334
In preparation to adding GOST curves support, rename source files and use curve name as eccdata parameter. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>