aboutsummaryrefslogtreecommitdiff
path: root/src/math/subgroups.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/subgroups.h')
-rw-r--r--src/math/subgroups.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/math/subgroups.h b/src/math/subgroups.h
index 1c11d4c..6cca10f 100644
--- a/src/math/subgroups.h
+++ b/src/math/subgroups.h
@@ -14,25 +14,22 @@
/**
* @brief Enumerates prime subgroup orders of a given curve.
* @param curve
- * @param cfg
* @return
*/
-GEN subgroups_prime(const curve_t *curve, const config_t *cfg);
+GEN subgroups_prime(const curve_t *curve);
/**
* @brief Enumerates nonprime subgroup orders of a given curve.
* @param curve
- * @param cfg
* @return
*/
-GEN subgroups_nonprime(const curve_t *curve, const config_t *cfg);
+GEN subgroups_nonprime(const curve_t *curve);
/**
* @brief Enumerates all subgroup orders of a given curve.
* @param curve
- * @param cfg
* @return
*/
-GEN subgroups_all(const curve_t *curve, const config_t *cfg);
+GEN subgroups_all(const curve_t *curve);
#endif // ECGEN_SUBGROUPS_H