Lines Matching refs:co_key
33 EC_KEY *co_key; member
74 if (sctx->co_key) { in pkey_ec_copy()
75 dctx->co_key = EC_KEY_dup(sctx->co_key); in pkey_ec_copy()
76 if (!dctx->co_key) in pkey_ec_copy()
97 EC_KEY_free(dctx->co_key); in pkey_ec_cleanup()
185 eckey = dctx->co_key ? dctx->co_key in pkey_ec_derive()
298 if (!dctx->co_key) { in pkey_ec_ctrl()
299 dctx->co_key = EC_KEY_dup(ec_key); in pkey_ec_ctrl()
300 if (!dctx->co_key) in pkey_ec_ctrl()
304 EC_KEY_set_flags(dctx->co_key, EC_FLAG_COFACTOR_ECDH); in pkey_ec_ctrl()
306 EC_KEY_clear_flags(dctx->co_key, EC_FLAG_COFACTOR_ECDH); in pkey_ec_ctrl()
308 EC_KEY_free(dctx->co_key); in pkey_ec_ctrl()
309 dctx->co_key = NULL; in pkey_ec_ctrl()