summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_nist.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-03-08 21:55:16 +0100
committerBodo Möller <bodo@openssl.org>2001-03-08 21:55:16 +0100
commit156e85578d180313c27e51d0bf186aa8650c49e1 (patch)
tree53fce31e7b1912e3e7df1d96e2a954a20c16e84f /crypto/ec/ecp_nist.c
parentFixes to make 'no-ec' work (it should not turn 'objects' into 'objts' for exa... (diff)
downloadopenssl-156e85578d180313c27e51d0bf186aa8650c49e1.tar.xz
openssl-156e85578d180313c27e51d0bf186aa8650c49e1.zip
Implement EC_GFp_mont_method.
Diffstat (limited to 'crypto/ec/ecp_nist.c')
-rw-r--r--crypto/ec/ecp_nist.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/crypto/ec/ecp_nist.c b/crypto/ec/ecp_nist.c
index acf2164900..1e3a7dd033 100644
--- a/crypto/ec/ecp_nist.c
+++ b/crypto/ec/ecp_nist.c
@@ -90,8 +90,8 @@ const EC_METHOD *EC_GFp_nist_method(void)
ec_GFp_simple_make_affine,
ec_GFp_nist_field_mul,
ec_GFp_nist_field_sqr,
- ec_GFp_nist_field_encode,
- ec_GFp_nist_field_decode };
+ 0 /* field_encode */,
+ 0 /* field_decode */ };
return &ret;
}
@@ -129,11 +129,3 @@ int ec_GFp_nist_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, con
int ec_GFp_nist_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
/* TODO */
-
-
-int ec_GFp_nist_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
-/* TODO */
-
-
-int ec_GFp_nist_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
-/* TODO */