Lines Matching defs:point
24 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point,
32 if (!ec_point_is_compat(point, group)) {
38 return ossl_ec_GFp_simple_set_compressed_coordinates(group, point, x,
47 return ossl_ec_GF2m_simple_set_compressed_coordinates(group, point,
51 return group->meth->point_set_compressed_coordinates(group, point, x,
57 EC_POINT *point, const BIGNUM *x,
60 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
65 EC_POINT *point, const BIGNUM *x,
68 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
73 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point,
77 if (point == NULL) {
86 if (!ec_point_is_compat(point, group)) {
92 return ossl_ec_GFp_simple_point2oct(group, point, form, buf, len,
101 return ossl_ec_GF2m_simple_point2oct(group, point,
106 return group->meth->point2oct(group, point, form, buf, len, ctx);
109 int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
117 if (!ec_point_is_compat(point, group)) {
123 return ossl_ec_GFp_simple_oct2point(group, point, buf, len, ctx);
131 return ossl_ec_GF2m_simple_oct2point(group, point, buf, len, ctx);
134 return group->meth->oct2point(group, point, buf, len, ctx);
137 size_t EC_POINT_point2buf(const EC_GROUP *group, const EC_POINT *point,
144 len = EC_POINT_point2oct(group, point, form, NULL, 0, NULL);
151 len = EC_POINT_point2oct(group, point, form, buf, len, ctx);