9 lines
88 B
C
9 lines
88 B
C
/**
|
|
* @brief Affine coordinates
|
|
*/
|
|
typedef struct
|
|
{
|
|
bn256 x[1];
|
|
bn256 y[1];
|
|
} ac;
|