aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_nist.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-03-07 09:48:38 +0000
committerBodo Möller <bodo@openssl.org>2001-03-07 09:48:38 +0000
commit2e0db07627d6ec226f3bdbeb3ac211dbd619f908 (patch)
tree617fa7c179a42a9dcf3a8a0c7bb1160aa3663193 /crypto/ec/ecp_nist.c
parent58fc62296f9ed6eae19974ae8bdd47b340b1e850 (diff)
downloadopenssl-2e0db07627d6ec226f3bdbeb3ac211dbd619f908.tar.gz
Optimized EC_METHODs need specific 'set_curve' and 'free' functions.
Diffstat (limited to 'crypto/ec/ecp_nist.c')
-rw-r--r--crypto/ec/ecp_nist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/ec/ecp_nist.c b/crypto/ec/ecp_nist.c
index 9bb4ec74a8..94a232f747 100644
--- a/crypto/ec/ecp_nist.c
+++ b/crypto/ec/ecp_nist.c
@@ -61,9 +61,9 @@ const EC_METHOD *EC_GFp_nist_method(void)
{
static const EC_METHOD ret = {
ec_GFp_simple_group_init,
- ec_GFp_simple_group_set_curve_GFp,
- ec_GFp_simple_group_finish,
- ec_GFp_simple_group_clear_finish,
+ ec_GFp_nist_group_set_curve_GFp,
+ ec_GFp_nist_group_finish,
+ ec_GFp_nist_group_clear_finish,
ec_GFp_simple_group_copy,
ec_GFp_simple_group_set_generator,
/* TODO: 'set' and 'get' functions for EC_GROUPs */