Lines Matching defs:group
47 static int ec_GFp_s390x_nistp_mul(const EC_GROUP *group, EC_POINT *r,
61 ctx = new_ctx = BN_CTX_new_ex(group->libctx);
84 point_ptr = EC_GROUP_get0_generator(group);
91 if (EC_POINT_is_at_infinity(group, point_ptr) == 1
93 rc = EC_POINT_set_to_infinity(group, r);
99 if (group->meth->point_get_affine_coordinates(group, point_ptr,
108 || group->meth->point_set_affine_coordinates(group, r,
118 rc = ossl_ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
136 const EC_GROUP *group;
140 group = EC_KEY_get0_group(eckey);
142 if (group == NULL || privkey == NULL) {
193 if (ossl_ec_group_do_inverse_ord(group, k, kinv, NULL) == 0
232 const EC_GROUP *group;
236 group = EC_KEY_get0_group(eckey);
238 if (eckey == NULL || group == NULL || pubkey == NULL || sig == NULL) {
248 ctx = BN_CTX_new_ex(group->libctx);
267 if (group->meth->point_get_affine_coordinates(group, pubkey,
286 static int ec_GFp_s390x_nistp##bits##_mul(const EC_GROUP *group, \
294 return ec_GFp_s390x_nistp_mul(group, r, scalar, num, points, \