At this moment I disabled openpgp/gnuk due to missing deep tests. Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
9 lines
88 B
C
9 lines
88 B
C
/**
|
|
* @brief Affine coordinates
|
|
*/
|
|
typedef struct
|
|
{
|
|
bn256 x[1];
|
|
bn256 y[1];
|
|
} ac;
|