Lines Matching defs:co_key
33 EC_KEY *co_key;
76 if (sctx->co_key) {
77 dctx->co_key = EC_KEY_dup(sctx->co_key);
78 if (!dctx->co_key)
99 EC_KEY_free(dctx->co_key);
187 eckey = dctx->co_key ? dctx->co_key
302 if (!dctx->co_key) {
303 dctx->co_key = EC_KEY_dup(ec_key);
304 if (!dctx->co_key)
308 EC_KEY_set_flags(dctx->co_key, EC_FLAG_COFACTOR_ECDH);
310 EC_KEY_clear_flags(dctx->co_key, EC_FLAG_COFACTOR_ECDH);
312 EC_KEY_free(dctx->co_key);
313 dctx->co_key = NULL;