diff options
| author | J08nY | 2017-02-15 18:09:39 +0100 |
|---|---|---|
| committer | J08nY | 2017-02-15 18:09:39 +0100 |
| commit | 8863bda8116a540134eb6715fc91294c5938d400 (patch) | |
| tree | 6b7e855063ba8c9909b8f5c2f051b053e6a3783b /src/math/curve.c | |
| parent | 2cf95775a1d1a41d49f86cbd2d66290653201367 (diff) | |
| download | ecgen-8863bda8116a540134eb6715fc91294c5938d400.tar.gz ecgen-8863bda8116a540134eb6715fc91294c5938d400.tar.zst ecgen-8863bda8116a540134eb6715fc91294c5938d400.zip | |
Diffstat (limited to 'src/math/curve.c')
| -rw-r--r-- | src/math/curve.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/math/curve.c b/src/math/curve.c index 8c8b514..42844ff 100644 --- a/src/math/curve.c +++ b/src/math/curve.c @@ -80,9 +80,15 @@ int curve_nonzero(curve_t *curve, config_t *config, ...) { } } -int curve_seed_fp(curve_t *curve, config_t *config, ...) {} +int curve_seed_fp(curve_t *curve, config_t *config, ...) { + //TODO implement + return INT_MIN; +} -int curve_seed_f2m(curve_t *curve, config_t *config, ...) {} +int curve_seed_f2m(curve_t *curve, config_t *config, ...) { + //TODO implement + return INT_MIN; +} int curve_seed(curve_t *curve, config_t *config, ...) { switch (typ(curve->field)) { |
