Symbol: EVP_PKEY_Q_keygen
crypto/openssl/demos/keyexch/x25519.c
77
local_peer->privk = EVP_PKEY_Q_keygen(libctx, propq, "X25519");
crypto/openssl/demos/pkey/EVP_PKEY_RSA_keygen.c
113
pkey = EVP_PKEY_Q_keygen(libctx, propq, "RSA", (size_t)bits);
crypto/openssl/demos/signature/EVP_ED_Signature_demo.c
139
priv = EVP_PKEY_Q_keygen(libctx, NULL, "ED25519");
crypto/openssl/include/openssl/ec.h
1552
EVP_PKEY_Q_keygen(NULL, NULL, "EC", (char *)(strstr(curve, "")))
crypto/openssl/include/openssl/evp.h
2082
EVP_PKEY *EVP_PKEY_Q_keygen(OSSL_LIB_CTX *libctx, const char *propq,
crypto/openssl/include/openssl/rsa.h
260
EVP_PKEY_Q_keygen(NULL, NULL, "RSA", (size_t)(0 + (bits)))
crypto/openssl/providers/implementations/keymgmt/mlx_kmgmt.c
703
key->mkey = EVP_PKEY_Q_keygen(key->libctx, key->propq,
crypto/openssl/providers/implementations/keymgmt/mlx_kmgmt.c
705
key->xkey = EVP_PKEY_Q_keygen(key->libctx, key->propq,
crypto/openssl/test/acvp_test.c
1441
if (!TEST_ptr(pkey = EVP_PKEY_Q_keygen(libctx, NULL, "RSA", tst->mod))
crypto/openssl/test/acvp_test.c
1521
if (!TEST_ptr(pkey = EVP_PKEY_Q_keygen(libctx, NULL, "RSA", (size_t)2048))
crypto/openssl/test/acvp_test.c
155
if (!TEST_ptr(pkey = EVP_PKEY_Q_keygen(libctx, NULL, "EC", tst->curve_name))
crypto/openssl/test/acvp_test.c
288
if (!TEST_ptr(pkey = EVP_PKEY_Q_keygen(libctx, NULL, "EC", tst->curve_name)))
crypto/openssl/test/acvp_test.c
370
if (!TEST_ptr(peer1 = EVP_PKEY_Q_keygen(libctx, NULL, "EC", curve)))
crypto/openssl/test/acvp_test.c
373
if (!TEST_ptr(peer2 = EVP_PKEY_Q_keygen(libctx, NULL, "EC", curve)))
crypto/openssl/test/acvp_test.c
504
if (!TEST_ptr(pkey = EVP_PKEY_Q_keygen(libctx, NULL, tst->curve_name))
crypto/openssl/test/endecode_test.c
1328
ret = TEST_ptr(key = EVP_PKEY_Q_keygen(testctx, "", "EC", "P-256"))
crypto/openssl/test/evp_extra_test2.c
1722
if (TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "XOR")))
crypto/openssl/test/evp_extra_test2.c
1730
if (!TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "XOR")))
crypto/openssl/test/evp_extra_test2.c
1767
|| !TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "EC", "P-256"))
crypto/openssl/test/evp_extra_test2.c
1792
ret = TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "EC", "P-256"))
crypto/openssl/test/evp_extra_test2.c
1804
ret = TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "X25519"))
crypto/openssl/test/evp_extra_test2.c
1818
ret = TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "SM2"))
crypto/openssl/test/evp_libctx_test.c
695
if (!TEST_ptr(*priv = EVP_PKEY_Q_keygen(libctx, NULL, "RSA", (size_t)bits))
crypto/openssl/test/evp_pkey_dhkem_test.c
254
if (!TEST_ptr(auth = EVP_PKEY_Q_keygen(libctx, NULL, "EC", "P-521")))
crypto/openssl/test/evp_pkey_dhkem_test.c
541
if (!TEST_ptr(recip = EVP_PKEY_Q_keygen(libctx, NULL, curve))
crypto/openssl/test/evp_pkey_dhkem_test.c
543
&& !TEST_ptr(sender_auth = EVP_PKEY_Q_keygen(libctx, NULL,
crypto/openssl/test/evp_pkey_dhkem_test.c
547
if (!TEST_ptr(recip = EVP_PKEY_Q_keygen(libctx, NULL, "EC", curve))
crypto/openssl/test/evp_pkey_dhkem_test.c
549
&& !TEST_ptr(sender_auth = EVP_PKEY_Q_keygen(libctx, NULL,
crypto/openssl/test/evp_pkey_dhkem_test.c
591
ret = TEST_ptr(key = EVP_PKEY_Q_keygen(libctx, NULL, "EC", curve))
crypto/openssl/test/evp_pkey_dhkem_test.c
780
if (!TEST_ptr(auth = EVP_PKEY_Q_keygen(libctx, NULL, "X448")))
crypto/openssl/test/evp_pkey_dhkem_test.c
797
ret = TEST_ptr(key = EVP_PKEY_Q_keygen(libctx, NULL, "ED448"))
crypto/openssl/test/evp_pkey_dhkem_test.c
820
if (!TEST_ptr(rkey[TEST_KEYTYPE_P256] = EVP_PKEY_Q_keygen(libctx, NULL,
crypto/openssl/test/evp_pkey_dhkem_test.c
824
if (!TEST_ptr(rkey[TEST_KEYTYPE_X25519] = EVP_PKEY_Q_keygen(libctx, NULL,
crypto/openssl/test/ml_kem_evp_extra_test.c
108
akey = EVP_PKEY_Q_keygen(testctx, NULL, "ML-KEM-768");
crypto/openssl/test/ml_kem_evp_extra_test.c
261
akey = EVP_PKEY_Q_keygen(testctx, NULL, v->algorithm_name);
crypto/openssl/test/pairwise_fail_test.c
106
if (!TEST_ptr_null(pkey = EVP_PKEY_Q_keygen(libctx, NULL, "EC", "P-256")))
crypto/openssl/test/pairwise_fail_test.c
99
if (!TEST_ptr_null(pkey = EVP_PKEY_Q_keygen(libctx, NULL, "RSA", (size_t)2048)))
crypto/openssl/test/slh_dsa_test.c
142
if (!TEST_ptr(eckey = EVP_PKEY_Q_keygen(lib_ctx, NULL, "EC", "P-256")))
crypto/openssl/test/threadstest.c
898
pkey = EVP_PKEY_Q_keygen(multi_libctx, NULL, "RSA", (size_t)(isfips ? 2048 : 512));