1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* * ecgen, tool for generating Elliptic curve domain parameters * Copyright (C) 2017-2018 J08nY */ #ifndef ECGEN_CM_ANY_H #define ECGEN_CM_ANY_H #include "misc/types.h" typedef struct { GEN p; GEN d; } cm_any_qdisc_t; /** * @brief * @param order * @return */ curve_t *cm_any_curve(GEN order); #endif // ECGEN_CM_ANY_H