Lines Matching defs:ctx
94 BN_CTX *ctx)
99 if (ctx == NULL)
100 if ((ctx = new_ctx = BN_CTX_new_ex(group->libctx)) == NULL)
103 BN_CTX_start(ctx);
120 ret = ossl_ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
123 BN_CTX_end(ctx);
129 const BIGNUM *b, BN_CTX *ctx)
138 if (!ctx)
139 if ((ctx_new = ctx = BN_CTX_new_ex(group->libctx)) == NULL)
142 if (!BN_mul(r, a, b, ctx))
144 if (!group->field_mod_func(r, r, group->field, ctx))
154 BN_CTX *ctx)
163 if (!ctx)
164 if ((ctx_new = ctx = BN_CTX_new_ex(group->libctx)) == NULL)
167 if (!BN_sqr(r, a, ctx))
169 if (!group->field_mod_func(r, r, group->field, ctx))