summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_smpl.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-01-19 14:42:42 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-01-19 14:42:42 +0000
commitdd616752a1ad3a4cae469ea9ceac50141debe32b (patch)
tree6b6e31d34a26d94b783a44a13f28fbc0280847fe /crypto/ec/ecp_smpl.c
parent198ce9a611b451656e7c984e16452e285597a015 (diff)
oops, revert mistakenly committed EC changes
Diffstat (limited to 'crypto/ec/ecp_smpl.c')
-rw-r--r--crypto/ec/ecp_smpl.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/crypto/ec/ecp_smpl.c b/crypto/ec/ecp_smpl.c
index 3e56b71a21..4d26f8bdf6 100644
--- a/crypto/ec/ecp_smpl.c
+++ b/crypto/ec/ecp_smpl.c
@@ -441,11 +441,8 @@ int ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POIN
}
point->Z_is_one = Z_is_one;
}
-
- if (BN_cmp(&point->X, x) || BN_cmp(&point->Y, y))
- ret = 2;
- else
- ret = 1;
+
+ ret = 1;
err:
if (new_ctx != NULL)
@@ -1409,9 +1406,6 @@ int ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *
{
return EC_POINT_is_at_infinity(group, b) ? 0 : 1;
}
-
- if (EC_POINT_is_at_infinity(group, b))
- return 1;
if (a->Z_is_one && b->Z_is_one)
{
@@ -1500,6 +1494,7 @@ int ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *
return ret;
}
+
int ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx)
{
BN_CTX *new_ctx = NULL;