blob: 710c3ceeda440f2b245c1d71424382611ec03b8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* ecgen, tool for generating Elliptic curve domain parameters
* Copyright (C) 2017 J08nY
*/
#ifndef ECGEN_POINT_H
#define ECGEN_POINT_H
#include <pari/pari.h>
typedef struct point_t {
GEN point;
GEN order;
} point_t;
point_t *gerepile_point(pari_sp ltop, point_t *point);
#endif //ECGEN_POINT_H
|