Lines Matching defs:point
37 * Perform a deterministic walk on the curve, by starting from |point| and
38 * using the X-coordinate of the previous point as the next scalar for
39 * point multiplication.
42 static BIGNUM *walk_curve(const EC_GROUP *group, EC_POINT *point,
49 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar,
54 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL))
55 || !TEST_true(EC_POINT_get_affine_coordinates(group, point,
70 EC_POINT *point = NULL;
79 || !TEST_ptr(point = EC_POINT_dup(EC_GROUP_get0_generator(group),
81 || !TEST_ptr(result = walk_curve(group, point, num_repeats)))
98 EC_POINT_free(point);