summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ecp_hp_methods.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix resource leaks in ec_points_make_affine()tb2025-06-011-1/+4
| | | | | | Add missing BN_CTX_end() and free prod_Z. CID 552848 (for prod_Z)
* Remove bogus alias.jsing2025-05-251-2/+1
|
* Provide an EC method that uses homogeneous projective coordinates.jsing2025-05-251-0/+858
This makes use of EC_FIELD_ELEMENT to perform fixed width constant time operations. Addition and doubling of points makes use of the formulas from "Complete addition formulas for prime order elliptic curves" (https://eprint.iacr.org/2015/1060). These are complete and operate in constant time. Further work will continue in tree. ok tb@