aboutsummaryrefslogtreecommitdiff
path: root/src/gen
diff options
context:
space:
mode:
Diffstat (limited to 'src/gen')
-rw-r--r--src/gen/gens.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gen/gens.c b/src/gen/gens.c
index 6e93f64..965a19e 100644
--- a/src/gen/gens.c
+++ b/src/gen/gens.c
@@ -7,6 +7,7 @@
#include "math/subgroup.h"
#include "obj/point.h"
#include "obj/subgroup.h"
+#include "misc/compat.h"
static subgroup_t *gens_point(GEN point, const curve_t *curve) {
subgroup_t *sub = subgroup_new();
@@ -103,7 +104,7 @@ CHECK(gens_check_anomalous) {
}
GEN gens_get_embedding(GEN prime, GEN generator_order) {
- return order(mkintmod(prime, generator_order));
+ return znorder(mkintmod(prime, generator_order), NULL);
}
CHECK(gens_check_embedding) {