/third_party/openssl/doc/man3/ |
D | EVP_PKEY_CTX_new.pod | 5 EVP_PKEY_CTX_new, EVP_PKEY_CTX_new_id, EVP_PKEY_CTX_new_from_name, 15 EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e); 31 The EVP_PKEY_CTX_new_id() function allocates public key algorithm context 47 EVP_PKEY_CTX_new_id() and EVP_PKEY_CTX_new_from_name() are normally 83 This is the I<id> used with EVP_PKEY_CTX_new_id(). 104 EVP_PKEY_CTX_new(), EVP_PKEY_CTX_new_id() and EVP_PKEY_CTX_dup() return either 117 The EVP_PKEY_CTX_new(), EVP_PKEY_CTX_new_id(), EVP_PKEY_CTX_dup() and
|
D | EVP_PKEY_CTX_set_tls1_prf_md.pod | 51 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL); 80 pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL);
|
D | EVP_PKEY_CTX_set_hkdf_md.pod | 100 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL); 130 pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL);
|
D | EVP_PKEY_CTX_set_rsa_pss_keygen_md.pod | 81 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_RSA_PSS, NULL);
|
D | EVP_PKEY_fromdata.pod | 25 L<EVP_PKEY_CTX_new_id(3)>.
|
D | EVP_PKEY_keygen.pod | 149 ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_RSA, NULL);
|
D | EVP_PKEY_meth_new.pod | 275 is being duplicated. Refer to L<EVP_PKEY_CTX_new(3)>, L<EVP_PKEY_CTX_new_id(3)>,
|
/third_party/openssl/test/ |
D | pkey_meth_kdf_test.c | 26 if ((pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL)) == NULL) { in test_kdf_tls1_prf() 75 if ((pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL)) == NULL) { in test_kdf_hkdf() 129 if ((pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_SCRYPT, NULL)) == NULL) { in test_kdf_scrypt()
|
D | dhtest.c | 739 paramgen_ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_DHX, 0); in dh_rfc5114_fix_nid_test() 763 paramgen_ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_DH, 0); in dh_set_dh_nid_test()
|
D | bad_dtls_test.c | 70 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL); in do_PRF()
|
D | evp_pkey_provided_test.c | 1331 if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL)) in test_ec_dup_no_operation() 1364 if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL)) in test_ec_dup_keygen_operation()
|
D | evp_extra_test.c | 2272 ctx2 = EVP_PKEY_CTX_new_id(0xdefaced, NULL); in test_EVP_PKEY_check() 2340 kctx = EVP_PKEY_CTX_new_id(EVP_PKEY_CMAC, NULL); in test_CMAC_keygen() 2978 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_RSA, NULL))) in test_keygen_with_empty_template() 3404 ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL); in test_ecpub()
|
/third_party/openssl/doc/man7/ |
D | X25519.pod | 24 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_X25519, NULL); 28 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_X448, NULL); 49 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_X25519, NULL);
|
D | life_cycle-pkey.pod | 152 EVP_PKEY_CTX_new_id newed 234 <tr><th style="border:1px solid" align="left">EVP_PKEY_CTX_new_id</th>
|
/third_party/openssl/apps/ |
D | genpkey.c | 294 ctx = EVP_PKEY_CTX_new_id(pkey_id, e); in init_gen_str()
|
D | pkeyutl.c | 586 ctx = EVP_PKEY_CTX_new_id(kdfnid, impl); in init_ctx()
|
D | speed.c | 1287 kctx = EVP_PKEY_CTX_new_id(curve->nid, NULL); in get_ecdsa() 2699 if ((ed_pctx = EVP_PKEY_CTX_new_id(ed_curves[testnum].nid, in speed_main() 2817 st = !((pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_SM2, NULL)) == NULL in speed_main() 2969 ffdh_ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_DH, NULL); in speed_main()
|
D | req.c | 1628 gctx = EVP_PKEY_CTX_new_id(pkey_id, keygen_engine); in set_keygen_ctx()
|
/third_party/openssl/crypto/evp/ |
D | pmeth_gn.c | 321 mac_ctx = EVP_PKEY_CTX_new_id(type, e); in EVP_PKEY_new_mac_key()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | pkey_ctx.rs | 135 let ptr = cvt_p(ffi::EVP_PKEY_CTX_new_id(id.as_raw(), ptr::null_mut()))?; in new_id()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | evp.rs | 495 pub fn EVP_PKEY_CTX_new_id(id: c_int, e: *mut ENGINE) -> *mut EVP_PKEY_CTX; in EVP_PKEY_CTX_new_id() function
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
D | est.c | 403 pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_RSA, NULL); in generate_csr()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/ |
D | est.c | 403 pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_RSA, NULL); in generate_csr()
|
/third_party/node/src/ |
D | node_crypto.cc | 6070 return EVPKeyCtxPointer(EVP_PKEY_CTX_new_id(EVP_PKEY_RSA, nullptr)); in Setup() 6107 return EVPKeyCtxPointer(EVP_PKEY_CTX_new_id(EVP_PKEY_RSA_PSS, nullptr)); in Setup() 6144 EVPKeyCtxPointer param_ctx(EVP_PKEY_CTX_new_id(EVP_PKEY_DSA, nullptr)); in Setup() 6183 EVPKeyCtxPointer param_ctx(EVP_PKEY_CTX_new_id(EVP_PKEY_EC, nullptr)); in Setup() 6217 return EVPKeyCtxPointer(EVP_PKEY_CTX_new_id(id_, nullptr)); in Setup() 6260 EVPKeyCtxPointer param_ctx(EVP_PKEY_CTX_new_id(EVP_PKEY_DH, nullptr)); in Setup()
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | evp.h | 1339 EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e);
|