Lines Matching defs:genctx
494 static int dh_gen_set_template(void *genctx, void *templ)
496 struct dh_gen_ctx *gctx = genctx;
520 static int dh_gen_common_set_params(void *genctx, const OSSL_PARAM params[])
522 struct dh_gen_ctx *gctx = genctx;
561 static const OSSL_PARAM *dh_gen_settable_params(ossl_unused void *genctx,
575 static const OSSL_PARAM *dhx_gen_settable_params(ossl_unused void *genctx,
595 static int dhx_gen_set_params(void *genctx, const OSSL_PARAM params[])
597 struct dh_gen_ctx *gctx = genctx;
600 if (!dh_gen_common_set_params(genctx, params))
649 static int dh_gen_set_params(void *genctx, const OSSL_PARAM params[])
651 struct dh_gen_ctx *gctx = genctx;
654 if (!dh_gen_common_set_params(genctx, params))
687 static void *dh_gen(void *genctx, OSSL_CALLBACK *osslcb, void *cbarg)
690 struct dh_gen_ctx *gctx = genctx;
746 BN_GENCB_set(gencb, dh_gencb, genctx);
789 static void dh_gen_cleanup(void *genctx)
791 struct dh_gen_ctx *gctx = genctx;