Home | History | Annotate | Download | only in ec

Lines Matching defs:point

309 	EC_POINT *point = NULL;
325 if ((point = EC_POINT_new(eckey->group)) == NULL)
334 /* testing whether pub_key * order is the point at infinity */
341 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx))
346 if (!EC_POINT_is_at_infinity(eckey->group, point))
361 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key,
367 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key,
378 if (point != NULL)
379 EC_POINT_free(point);
387 EC_POINT *point = NULL;
400 point = EC_POINT_new(key->group);
402 if (!point)
415 if (!EC_POINT_set_affine_coordinates_GF2m(key->group, point,
418 if (!EC_POINT_get_affine_coordinates_GF2m(key->group, point,
425 if (!EC_POINT_set_affine_coordinates_GFp(key->group, point,
428 if (!EC_POINT_get_affine_coordinates_GFp(key->group, point,
442 if (!EC_KEY_set_public_key(key, point))
453 if (point)
454 EC_POINT_free(point);