ecc_point

A point on a ECC curve, stored in Jacbobian format such that (x,y,z) => (x/z^2, y/z^3, 1) when interpretted as affine

version(LTC_MECC)
extern (C) nothrow
struct ecc_point {}

Members

Variables

x
void* x;

The x co-ordinate

y
void* y;

The y co-ordinate

z
void* z;

The z co-ordinate

Meta