libsec: implement elliptic curve group operations in jacobian coordinate system

This commit is contained in:
cinap_lenrek 2016-04-20 20:09:59 +02:00
parent 2763229c00
commit 2fa4c8ef66
6 changed files with 140 additions and 26 deletions

View file

@ -497,6 +497,7 @@ typedef struct ECpoint{
int inf;
mpint *x;
mpint *y;
mpint *z; /* nil when using affine coordinates */
} ECpoint;
typedef ECpoint ECpub;