Lines Matching refs:group
31 const EC_GROUP *group = EC_KEY_get0_group(key);
97 if (!EC_GROUP_get_curve(group, p, a, b, ctx)) {
113 || !EC_POINT_get_affine_coordinates(group,
114 EC_GROUP_get0_generator(group),
120 || !EC_POINT_get_affine_coordinates(group,
200 const EC_GROUP *group = EC_KEY_get0_group(key);
201 const BIGNUM *order = EC_GROUP_get0_order(group);
213 kG = EC_POINT_new(group);
257 if (!EC_POINT_mul(group, kG, k, NULL, NULL, ctx)
258 || !EC_POINT_get_affine_coordinates(group, kG, x1, NULL,
278 || !ossl_ec_group_do_inverse_ord(group, s, s, ctx)
316 const EC_GROUP *group = EC_KEY_get0_group(key);
317 const BIGNUM *order = EC_GROUP_get0_order(group);
327 pt = EC_POINT_new(group);
371 if (!EC_POINT_mul(group, pt, s, EC_KEY_get0_public_key(key), t, ctx)
372 || !EC_POINT_get_affine_coordinates(group, pt, x1, NULL, ctx)) {