Lines Matching refs:EC_GROUP
104 /* EC_GROUP_new_by_curve_name returns a fresh EC_GROUP object for the elliptic
112 OPENSSL_EXPORT EC_GROUP *EC_GROUP_new_by_curve_name(int nid);
115 OPENSSL_EXPORT void EC_GROUP_free(EC_GROUP *group);
117 /* EC_GROUP_dup returns a fresh |EC_GROUP| which is equal to |a| or NULL on
119 OPENSSL_EXPORT EC_GROUP *EC_GROUP_dup(const EC_GROUP *a);
123 OPENSSL_EXPORT int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b,
128 OPENSSL_EXPORT const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
132 OPENSSL_EXPORT const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group);
136 OPENSSL_EXPORT int EC_GROUP_get_cofactor(const EC_GROUP *group,
144 OPENSSL_EXPORT int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p,
149 OPENSSL_EXPORT int EC_GROUP_get_curve_name(const EC_GROUP *group);
153 OPENSSL_EXPORT unsigned EC_GROUP_get_degree(const EC_GROUP *group);
160 OPENSSL_EXPORT EC_POINT *EC_POINT_new(const EC_GROUP *group);
176 const EC_GROUP *group);
180 OPENSSL_EXPORT int EC_POINT_set_to_infinity(const EC_GROUP *group,
185 OPENSSL_EXPORT int EC_POINT_is_at_infinity(const EC_GROUP *group,
191 OPENSSL_EXPORT int EC_POINT_is_on_curve(const EC_GROUP *group,
196 OPENSSL_EXPORT int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a,
201 OPENSSL_EXPORT int EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point,
207 OPENSSL_EXPORT int EC_POINTs_make_affine(const EC_GROUP *group, size_t num,
216 OPENSSL_EXPORT int EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group,
225 OPENSSL_EXPORT int EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group,
235 OPENSSL_EXPORT size_t EC_POINT_point2oct(const EC_GROUP *group,
242 OPENSSL_EXPORT int EC_POINT_point2cbb(CBB *out, const EC_GROUP *group,
250 OPENSSL_EXPORT int EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point,
258 const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit,
266 OPENSSL_EXPORT int EC_POINT_add(const EC_GROUP *group, EC_POINT *r,
272 OPENSSL_EXPORT int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r,
277 OPENSSL_EXPORT int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a,
282 OPENSSL_EXPORT int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r,
297 * |EC_GROUP|s returned by this function will always compare as unequal via
302 OPENSSL_EXPORT EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p,
307 * must have the given order and cofactor. It may only be used with |EC_GROUP|
310 OPENSSL_EXPORT int EC_GROUP_set_generator(EC_GROUP *group,
318 OPENSSL_EXPORT int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order,
322 OPENSSL_EXPORT void EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag);
329 OPENSSL_EXPORT const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group);
337 EC_GROUP *group, point_conversion_form_t form);
365 BORINGSSL_MAKE_DELETER(EC_GROUP, EC_GROUP_free)