aboutsummaryrefslogtreecommitdiff
path: root/src/equation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/equation.h')
-rw-r--r--src/equation.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/equation.h b/src/equation.h
deleted file mode 100644
index 7acb7d0..0000000
--- a/src/equation.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * ecgen, tool for generating Elliptic curve domain parameters
- * Copyright (C) 2017 J08nY
- */
-#ifndef ECGEN_EQUATION_H
-#define ECGEN_EQUATION_H
-
-#include "cli.h"
-#include "types.h"
-
-int a_random(curve_t *curve, config_t *config);
-
-int a_zero(curve_t *curve, config_t *config);
-
-int a_one(curve_t *curve, config_t *config);
-
-int a_seed(curve_t *curve, config_t *config);
-
-int b_random(curve_t *curve, config_t *config);
-
-int b_zero(curve_t *curve, config_t *config);
-
-int b_one(curve_t *curve, config_t *config);
-
-int b_seed(curve_t *curve, config_t *config);
-
-#endif // ECGEN_EQUATION_H