blob: 106bf5e7af4fa69711357fcefe702e82d549d9a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* ecgen, tool for generating Elliptic curve domain parameters
* Copyright (C) 2017 J08nY
*/
#ifndef ECGEN_CURVE_H
#define ECGEN_CURVE_H
#include "gp.h"
GEN curve_random(GEN field);
#endif //ECGEN_CURVE_H
|