/third_party/openssl/test/ |
H A 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()
|
H A D | bad_dtls_test.c | 70 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL); in do_PRF()
|
H A 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()
|
H A D | evp_pkey_provided_test.c | 1359 if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL)) in test_ec_dup_no_operation() 1392 if (!TEST_ptr(pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL)) in test_ec_dup_keygen_operation()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/openssl/ |
H A D | openssl.c | 357 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL); in ngtcp2_crypto_hkdf_extract() 412 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL); in ngtcp2_crypto_hkdf_expand() 466 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL); in ngtcp2_crypto_hkdf()
|
/third_party/node/src/crypto/ |
H A D | crypto_keygen.cc | 48 EVPKeyCtxPointer(EVP_PKEY_CTX_new_id(params->params.id, nullptr)); in Setup()
|
H A D | crypto_dsa.cc | 41 EVPKeyCtxPointer param_ctx(EVP_PKEY_CTX_new_id(EVP_PKEY_DSA, nullptr)); in Setup()
|
H A D | crypto_hkdf.cc | 108 EVPKeyCtxPointer(EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, nullptr)); in DeriveBits()
|
H A D | crypto_ec.cc | 563 key_ctx.reset(EVP_PKEY_CTX_new_id(params->params.curve_nid, nullptr)); in Setup() 566 EVPKeyCtxPointer param_ctx(EVP_PKEY_CTX_new_id(EVP_PKEY_EC, nullptr)); in Setup()
|
H A D | crypto_rsa.cc | 34 EVP_PKEY_CTX_new_id( in Setup()
|
H A D | crypto_dh.cc | 569 EVPKeyCtxPointer param_ctx(EVP_PKEY_CTX_new_id(EVP_PKEY_DH, nullptr)); in Setup()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | pmeth_gn.c | 321 mac_ctx = EVP_PKEY_CTX_new_id(type, e); in EVP_PKEY_new_mac_key()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | genpkey.c | 296 ctx = EVP_PKEY_CTX_new_id(pkey_id, e); in init_gen_str()
|
H A D | pkeyutl.c | 586 ctx = EVP_PKEY_CTX_new_id(kdfnid, impl); in init_ctx()
|
H A D | speed.c | 1301 kctx = EVP_PKEY_CTX_new_id(curve->nid, NULL); in get_ecdsa() 1306 * If we reach this code EVP_PKEY_CTX_new_id() failed and a in get_ecdsa() 2713 if ((ed_pctx = EVP_PKEY_CTX_new_id(ed_curves[testnum].nid, in speed_main() 2831 st = !((pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_SM2, NULL)) == NULL in speed_main() 2983 ffdh_ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_DH, NULL); in speed_main()
|
H A D | req.c | 1632 gctx = EVP_PKEY_CTX_new_id(pkey_id, keygen_engine); in set_keygen_ctx()
|
/third_party/openssl/crypto/evp/ |
H A D | pmeth_gn.c | 321 mac_ctx = EVP_PKEY_CTX_new_id(type, e); in EVP_PKEY_new_mac_key()
|
/third_party/openssl/apps/ |
H A D | genpkey.c | 296 ctx = EVP_PKEY_CTX_new_id(pkey_id, e); in init_gen_str()
|
H A D | pkeyutl.c | 586 ctx = EVP_PKEY_CTX_new_id(kdfnid, impl); in init_ctx()
|
H A D | speed.c | 1287 kctx = EVP_PKEY_CTX_new_id(curve->nid, NULL); in get_ecdsa() 1292 * If we reach this code EVP_PKEY_CTX_new_id() failed and a 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()
|
H A D | req.c | 1630 gctx = EVP_PKEY_CTX_new_id(pkey_id, keygen_engine); in set_keygen_ctx()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | evp.rs | 501 pub fn EVP_PKEY_CTX_new_id(id: c_int, e: *mut ENGINE) -> *mut EVP_PKEY_CTX; in EVP_PKEY_CTX_new_id() functions
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
H A 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/ |
H A D | est.c | 403 pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_RSA, NULL); in generate_csr()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | pkey_ctx.rs | 136 let ptr = cvt_p(ffi::EVP_PKEY_CTX_new_id(id.as_raw(), ptr::null_mut()))?; in new_id()
|