EVP_KEYMGMT_fetch
} else if ((keymgmt = EVP_KEYMGMT_fetch(data->libctx,
keymgmt = EVP_KEYMGMT_fetch(libctx, keytype, propquery);
keymgmt = EVP_KEYMGMT_fetch(libctx, data->data_type, propq);
EVP_KEYMGMT *EVP_KEYMGMT_fetch(OSSL_LIB_CTX *ctx, const char *algorithm,
keymgmt = EVP_KEYMGMT_fetch(ctx->libctx, ginf->algorithm, ctx->propq);
keymgmt = EVP_KEYMGMT_fetch(ctx->libctx, keytype, ctx->propq);
if (!TEST_ptr(km1 = EVP_KEYMGMT_fetch(fixture->ctx1, "RSA", NULL))
|| !TEST_ptr(km2 = EVP_KEYMGMT_fetch(fixture->ctx2, "RSA", NULL))
|| !TEST_ptr(km3 = EVP_KEYMGMT_fetch(fixture->ctx1, "RSA-PSS", NULL))
keymgmt = EVP_KEYMGMT_fetch(libctx, "RSA", NULL);
&& TEST_ptr(rsameth = EVP_KEYMGMT_fetch(ctx, "RSA", NULL))