diff options
Diffstat (limited to 'src/math/order.h')
| -rw-r--r-- | src/math/order.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/math/order.h b/src/math/order.h new file mode 100644 index 0000000..4af994a --- /dev/null +++ b/src/math/order.h @@ -0,0 +1,28 @@ +/* + * ecgen, tool for generating Elliptic curve domain parameters + * Copyright (C) 2017 J08nY + */ +#ifndef ECGEN_ORDER_H +#define ECGEN_ORDER_H + +#include "types.h" + +/** + * + * @param curve + * @param cfg + * @param ... + * @return + */ +int order_init(curve_t *curve, config_t *cfg, ...); + +/** + * + * @param curve + * @param cfg + * @param ... + * @return + */ +int order_prime(curve_t *curve, config_t *cfg, ...); + +#endif //ECGEN_ORDER_H |
