*/EVP_PKEY_copy_parameters(pkey, c->pkeys[i].privatekey); ERR_clear_error();#ifndefOPENSSL_NO_RSA/* * Don't check the public/private key, this is mostly for smart * cards. */if(EVP_PKEY_id(c->pkeys[i].privatekey) == EVP_PKEY_RSA && RSA_flags(EVP_PKEY_get0_RSA(c->pkeys[...
`void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, const EVP_PKEY_METHOD *src) { dst->init = src->init; dst->copy = src->copy; dst->cleanup = src->cleanup; dst->paramgen_init = src->paramgen_init; dst->paramgen = src->paramgen; dst->keygen_init = src->keygen_init; dst->...