Lines Matching refs:ret
25 EC_GROUP *ret;
57 ret = ossl_ec_group_new_ex(ossl_bn_get_libctx(ctx), NULL, meth);
58 if (ret == NULL)
61 if (!EC_GROUP_set_curve(ret, p, a, b, ctx)) {
62 EC_GROUP_free(ret);
66 return ret;
74 EC_GROUP *ret;
78 ret = ossl_ec_group_new_ex(ossl_bn_get_libctx(ctx), NULL, meth);
79 if (ret == NULL)
82 if (!EC_GROUP_set_curve(ret, p, a, b, ctx)) {
83 EC_GROUP_free(ret);
87 return ret;