Lines Matching refs:gen_group
72 EC_GROUP *gen_group; member
83 dctx->gen_group = NULL; in pkey_ec_init()
98 if (sctx->gen_group) in pkey_ec_copy()
100 dctx->gen_group = EC_GROUP_dup(sctx->gen_group); in pkey_ec_copy()
101 if (!dctx->gen_group) in pkey_ec_copy()
113 if (dctx->gen_group) in pkey_ec_cleanup()
114 EC_GROUP_free(dctx->gen_group); in pkey_ec_cleanup()
217 if (dctx->gen_group) in pkey_ec_ctrl()
218 EC_GROUP_free(dctx->gen_group); in pkey_ec_ctrl()
219 dctx->gen_group = group; in pkey_ec_ctrl()
273 if (dctx->gen_group == NULL) in pkey_ec_paramgen()
281 ret = EC_KEY_set_group(ec, dctx->gen_group); in pkey_ec_paramgen()