1 2 3 4 5 6 7 8 9 10 11 12 13
/* * ecgen, tool for generating Elliptic curve domain parameters * Copyright (C) 2017 J08nY */ #ifndef ECGEN_POINT_H #define ECGEN_POINT_H #include <pari/pari.h> #include "types.h" point_t *gerepile_point(pari_sp ltop, point_t *point); #endif // ECGEN_POINT_H