blob: ce171d4bbc7a0e303eaf4f286dfadb61b395778f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* ecgen, tool for generating Elliptic curve domain parameters
* Copyright (C) 2017-2018 J08nY
*/
#include "cm.h"
#include "io/output.h"
#include "p1363.h"
int cm_do() {
debug_log_start("Starting Complex Multiplication method");
fprintf(err, "This is *NOT IMPLEMENTED* currently.\n");
GEN D = stoi(71);
form_t **forms;
size_t nforms = p1363_forms(D, &forms);
for (size_t i = 0; i < nforms; ++i) {
p1363_invariant(D, forms[i]);
}
p1363_free(&forms, nforms);
debug_log_start("Finished Complex Multiplication method");
return 0;
}
|