Symbol: EVP_PKEY_CTX_new_from_name
crypto/openssl/apps/dhparam.c
205
ctx = EVP_PKEY_CTX_new_from_name(app_get0_libctx(), alg, app_get0_propq());
crypto/openssl/apps/dhparam.c
415
ctx = EVP_PKEY_CTX_new_from_name(app_get0_libctx(), "DHX", app_get0_propq());
crypto/openssl/apps/dsaparam.c
162
ctx = EVP_PKEY_CTX_new_from_name(app_get0_libctx(), "DSA", app_get0_propq());
crypto/openssl/apps/ecparam.c
241
gctx_params = EVP_PKEY_CTX_new_from_name(app_get0_libctx(), "sm2",
crypto/openssl/apps/ecparam.c
244
gctx_params = EVP_PKEY_CTX_new_from_name(app_get0_libctx(), "ec",
crypto/openssl/apps/genpkey.c
103
ctx = EVP_PKEY_CTX_new_from_name(libctx, algname, propq);
crypto/openssl/apps/genpkey.c
405
ctx = EVP_PKEY_CTX_new_from_name(libctx, algname, propq);
crypto/openssl/apps/pkeyutl.c
711
ctx = EVP_PKEY_CTX_new_from_name(libctx, kdfalg, propq);
crypto/openssl/apps/req.c
1650
gctx = EVP_PKEY_CTX_new_from_name(app_get0_libctx(),
crypto/openssl/apps/speed.c
1828
if ((pctx = EVP_PKEY_CTX_new_from_name(NULL, "EC", NULL)) == NULL
crypto/openssl/apps/speed.c
4168
kem_gen_ctx = EVP_PKEY_CTX_new_from_name(app_get0_libctx(),
crypto/openssl/apps/speed.c
4363
sig_gen_ctx = EVP_PKEY_CTX_new_from_name(app_get0_libctx(),
crypto/openssl/apps/testdsa.h
1458
if ((pctx = EVP_PKEY_CTX_new_from_name(NULL, "DSA", NULL)) == NULL)
crypto/openssl/crypto/cms/cms_ec.c
49
pctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", propq);
crypto/openssl/crypto/evp/evp_lib.c
1203
EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new_from_name(libctx, name, propq);
crypto/openssl/crypto/evp/p_lib.c
448
ctx = EVP_PKEY_CTX_new_from_name(libctx,
crypto/openssl/crypto/evp/p_lib.c
672
ctx = EVP_PKEY_CTX_new_from_name(libctx, "CMAC", propq);
crypto/openssl/crypto/hpke/hpke.c
110
EVP_PKEY_CTX *cctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", propq);
crypto/openssl/crypto/hpke/hpke.c
1331
pctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", propq);
crypto/openssl/crypto/hpke/hpke.c
1333
pctx = EVP_PKEY_CTX_new_from_name(libctx, kem_info->keytype, propq);
crypto/openssl/demos/keyexch/ecdh.c
56
ctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", NULL);
crypto/openssl/demos/keyexch/ecdh.c
82
ctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", NULL);
crypto/openssl/demos/pkey/EVP_PKEY_DSA_keygen.c
30
ctx = EVP_PKEY_CTX_new_from_name(libctx, "DSA", propq);
crypto/openssl/demos/pkey/EVP_PKEY_DSA_paramfromdata.c
49
ctx = EVP_PKEY_CTX_new_from_name(libctx, "DSA", propq);
crypto/openssl/demos/pkey/EVP_PKEY_DSA_paramgen.c
30
ctx = EVP_PKEY_CTX_new_from_name(libctx, "DSA", propq);
crypto/openssl/demos/pkey/EVP_PKEY_DSA_paramvalidate.c
76
ctx = EVP_PKEY_CTX_new_from_name(libctx, "DSA", propq);
crypto/openssl/demos/pkey/EVP_PKEY_EC_keygen.c
44
genctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", propq);
crypto/openssl/demos/pkey/EVP_PKEY_RSA_keygen.c
42
genctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA", propq);
crypto/openssl/demos/signature/EVP_DSA_Signature_demo.c
170
pkey_ctx = EVP_PKEY_CTX_new_from_name(libctx, ALG, PROPQUERY);
crypto/openssl/demos/signature/EVP_DSA_Signature_demo.c
233
pkey_ctx = EVP_PKEY_CTX_new_from_name(libctx, ALG, PROPQUERY);
crypto/openssl/demos/signature/EVP_DSA_Signature_demo.c
50
pkey_ctx = EVP_PKEY_CTX_new_from_name(libctx, ALG, PROPQUERY);
crypto/openssl/fuzz/ml-dsa.c
235
ctx = EVP_PKEY_CTX_new_from_name(NULL, keytype, NULL);
crypto/openssl/fuzz/ml-kem.c
224
ctx = EVP_PKEY_CTX_new_from_name(NULL, keytype, NULL);
crypto/openssl/fuzz/slh-dsa.c
68
ctx = EVP_PKEY_CTX_new_from_name(NULL, name, NULL);
crypto/openssl/include/openssl/evp.h
1857
EVP_PKEY_CTX *EVP_PKEY_CTX_new_from_name(OSSL_LIB_CTX *libctx,
crypto/openssl/providers/fips/self_test_kats.c
422
kactx = EVP_PKEY_CTX_new_from_name(libctx, t->algorithm, "");
crypto/openssl/providers/fips/self_test_kats.c
512
fromctx = EVP_PKEY_CTX_new_from_name(libctx, t->keytype, NULL);
crypto/openssl/providers/fips/self_test_kats.c
621
key_ctx = EVP_PKEY_CTX_new_from_name(libctx, t->algorithm, NULL);
crypto/openssl/providers/fips/self_test_kats.c
788
ctx = EVP_PKEY_CTX_new_from_name(libctx, t->algorithm, NULL);
crypto/openssl/providers/fips/self_test_kats.c
843
keyctx = EVP_PKEY_CTX_new_from_name(libctx, t->algorithm, NULL);
crypto/openssl/providers/implementations/keymgmt/mlx_kmgmt.c
361
if ((ctx = EVP_PKEY_CTX_new_from_name(libctx, alg, propq)) == NULL
crypto/openssl/ssl/s3_lib.c
5314
pctx = EVP_PKEY_CTX_new_from_name(sctx->libctx, ginf->algorithm,
crypto/openssl/ssl/s3_lib.c
5353
pctx = EVP_PKEY_CTX_new_from_name(sctx->libctx, ginf->algorithm,
crypto/openssl/ssl/statem/statem_clnt.c
2325
pctx = EVP_PKEY_CTX_new_from_name(sctx->libctx, "DH", sctx->propq);
crypto/openssl/ssl/t1_lib.c
4336
pctx = EVP_PKEY_CTX_new_from_name(sctx->libctx, "DH", sctx->propq);
crypto/openssl/test/acvp_test.c
1186
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "DH", NULL))
crypto/openssl/test/acvp_test.c
1215
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "DH", NULL))
crypto/openssl/test/acvp_test.c
1294
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA", NULL))
crypto/openssl/test/acvp_test.c
1348
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA", NULL))
crypto/openssl/test/acvp_test.c
198
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", NULL))
crypto/openssl/test/acvp_test.c
458
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, algname, NULL))
crypto/openssl/test/acvp_test.c
533
if (!TEST_ptr(paramgen_ctx = EVP_PKEY_CTX_new_from_name(libctx, "DSA", NULL))
crypto/openssl/test/acvp_test.c
611
if (!TEST_ptr(paramgen_ctx = EVP_PKEY_CTX_new_from_name(libctx, "DSA", NULL))
crypto/openssl/test/acvp_test.c
707
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "DSA", NULL))
crypto/openssl/test/dsatest.c
394
if (!TEST_ptr(pg_ctx = EVP_PKEY_CTX_new_from_name(NULL, "DSA", NULL))
crypto/openssl/test/dsatest.c
460
ret = TEST_ptr(gen_ctx = EVP_PKEY_CTX_new_from_name(NULL, "DSA", NULL))
crypto/openssl/test/ectest.c
2949
|| !TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(NULL, "EC", NULL))
crypto/openssl/test/ectest.c
3423
if (!TEST_ptr(pctx2 = EVP_PKEY_CTX_new_from_name(NULL, "EC", NULL))
crypto/openssl/test/ectest.c
3495
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(NULL, "EC", NULL))
crypto/openssl/test/endecode_test.c
116
: EVP_PKEY_CTX_new_from_name(keyctx, type, testpropq);
crypto/openssl/test/endecode_test.c
98
(void)((ctx = EVP_PKEY_CTX_new_from_name(keyctx, type, testpropq)) != NULL
crypto/openssl/test/endecoder_legacy_test.c
251
&& ((ctx = EVP_PKEY_CTX_new_from_name(NULL, type, NULL)) == NULL
crypto/openssl/test/endecoder_legacy_test.c
265
: EVP_PKEY_CTX_new_from_name(NULL, type, NULL);
crypto/openssl/test/evp_extra_test.c
1075
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx, keytype, testpropq)))
crypto/openssl/test/evp_extra_test.c
2474
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx, "EC", NULL))
crypto/openssl/test/evp_extra_test.c
2606
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx,
crypto/openssl/test/evp_extra_test.c
3168
ctx = EVP_PKEY_CTX_new_from_name(testctx, alg, NULL);
crypto/openssl/test/evp_extra_test.c
3476
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx, "HKDF", testpropq)))
crypto/openssl/test/evp_extra_test.c
3523
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx, "HKDF", testpropq)))
crypto/openssl/test/evp_extra_test.c
3568
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx, "HKDF", testpropq)))
crypto/openssl/test/evp_extra_test.c
3790
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx, "DSA", NULL))
crypto/openssl/test/evp_extra_test.c
3858
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx, "RSA", NULL))
crypto/openssl/test/evp_extra_test.c
4330
pctx = EVP_PKEY_CTX_new_from_name(tmpctx, keytype, "");
crypto/openssl/test/evp_extra_test.c
4753
&& TEST_ptr((ctx = EVP_PKEY_CTX_new_from_name(testctx, "RSA-PSS", testpropq)))
crypto/openssl/test/evp_extra_test.c
6247
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(testctx, "RSA",
crypto/openssl/test/evp_extra_test2.c
1568
if (!TEST_ptr(fromctx = EVP_PKEY_CTX_new_from_name(mainctx, keytype, NULL))
crypto/openssl/test/evp_extra_test2.c
1608
ret = TEST_ptr(gctx = EVP_PKEY_CTX_new_from_name(mainctx, "DHX", NULL))
crypto/openssl/test/evp_extra_test2.c
1636
ret = TEST_ptr(gctx = EVP_PKEY_CTX_new_from_name(mainctx, "DH", NULL))
crypto/openssl/test/evp_extra_test2.c
1691
ret = TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(mainctx, "DH", NULL))
crypto/openssl/test/evp_extra_test2.c
2121
ret = TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(mainctx, type, NULL))
crypto/openssl/test/evp_extra_test2.c
3069
ret = TEST_ptr(gen_ctx = EVP_PKEY_CTX_new_from_name(mainctx, "DSA", NULL))
crypto/openssl/test/evp_extra_test2.c
3224
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(mainctx, "DSA", NULL))
crypto/openssl/test/evp_libctx_test.c
900
if (!TEST_ptr(gctx = EVP_PKEY_CTX_new_from_name(libctx, "DH", NULL))
crypto/openssl/test/evp_pkey_ctx_new_from_name.c
10
pctx = EVP_PKEY_CTX_new_from_name(NULL, "NO_SUCH_ALGORITHM", NULL);
crypto/openssl/test/evp_pkey_dhkem_test.c
132
if (!TEST_ptr(genctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", NULL))
crypto/openssl/test/evp_pkey_dhkem_test.c
492
ret = TEST_ptr(genctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", NULL))
crypto/openssl/test/evp_pkey_dhkem_test.c
754
ret = TEST_ptr(genctx = EVP_PKEY_CTX_new_from_name(libctx, t->curvename, NULL))
crypto/openssl/test/evp_pkey_provided_test.c
1214
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL)))
crypto/openssl/test/evp_pkey_provided_test.c
1500
ctx = EVP_PKEY_CTX_new_from_name(NULL, alg, NULL);
crypto/openssl/test/evp_pkey_provided_test.c
1679
ctx = EVP_PKEY_CTX_new_from_name(NULL, alg, NULL);
crypto/openssl/test/evp_pkey_provided_test.c
2018
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(NULL, "DSA", NULL)))
crypto/openssl/test/evp_pkey_provided_test.c
2148
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(NULL, "DSA", NULL))
crypto/openssl/test/evp_pkey_provided_test.c
2191
if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_from_name(NULL, "HKDF", NULL)))
crypto/openssl/test/evp_pkey_provided_test.c
2231
|| (factory = EVP_PKEY_CTX_new_from_name(NULL, alg, NULL)) == NULL)
crypto/openssl/test/evp_pkey_provided_test.c
384
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(NULL, "RSA", NULL)))
crypto/openssl/test/evp_pkey_provided_test.c
469
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(NULL, "RSA", NULL))
crypto/openssl/test/evp_pkey_provided_test.c
860
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(NULL, "RSA", NULL))
crypto/openssl/test/evp_pkey_provided_test.c
974
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL)))
crypto/openssl/test/evp_test.c
2767
kdata->ctx = EVP_PKEY_CTX_new_from_name(libctx, name, "");
crypto/openssl/test/evp_test.c
4066
kdata->ctx = EVP_PKEY_CTX_new_from_name(libctx, name, propquery);
crypto/openssl/test/evp_test.c
4397
if (!TEST_ptr(genctx = EVP_PKEY_CTX_new_from_name(libctx, keygen->alg,
crypto/openssl/test/helpers/predefined_dhparams.c
21
EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(libctx, type, NULL);
crypto/openssl/test/ml_dsa_test.c
302
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(lib_ctx, "ML-DSA-44", NULL))
crypto/openssl/test/ml_dsa_test.c
42
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(lib_ctx, alg, NULL))
crypto/openssl/test/ml_dsa_test.c
73
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(lib_ctx, name, NULL))
crypto/openssl/test/pairwise_fail_test.c
128
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "ED25519", NULL)))
crypto/openssl/test/pairwise_fail_test.c
139
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "ML-DSA-87", NULL)))
crypto/openssl/test/pairwise_fail_test.c
150
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "SLH-DSA-SHA2-256f", NULL)))
crypto/openssl/test/pairwise_fail_test.c
161
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "ML-KEM-1024", NULL)))
crypto/openssl/test/provider_pkey_test.c
133
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA", NULL)))
crypto/openssl/test/provider_pkey_test.c
155
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA",
crypto/openssl/test/provider_pkey_test.c
198
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA",
crypto/openssl/test/provider_pkey_test.c
213
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA",
crypto/openssl/test/provider_pkey_test.c
260
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA",
crypto/openssl/test/provider_pkey_test.c
284
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA",
crypto/openssl/test/provider_pkey_test.c
71
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA",
crypto/openssl/test/provider_status_test.c
170
if (!TEST_ptr((pctx = EVP_PKEY_CTX_new_from_name(libctx, "RSA", NULL)))
crypto/openssl/test/slh_dsa_test.c
318
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(lib_ctx, alg, NULL))
crypto/openssl/test/slh_dsa_test.c
385
if (!TEST_ptr(gctx = EVP_PKEY_CTX_new_from_name(lib_ctx, "SLH-DSA-SHA2-128s", NULL))
crypto/openssl/test/slh_dsa_test.c
44
ret = TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(lib_ctx, alg, NULL))
crypto/openssl/test/slh_dsa_test.c
599
if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(lib_ctx, tst->name, NULL))
crypto/openssl/test/slh_dsa_test.c
75
|| !TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(lib_ctx, name, NULL))
crypto/openssl/test/sslapitest.c
10352
EVP_PKEY_CTX *evpctx = EVP_PKEY_CTX_new_from_name(libctx,
crypto/openssl/test/sslapitest.c
10685
pctx = EVP_PKEY_CTX_new_from_name(libctx, "DH", NULL);