Home
last modified time | relevance | path

Searched refs:EVP_PKEY_CTX_new (Results 1 – 25 of 59) sorted by relevance

123

/third_party/openssl/test/
Denginetest.c269 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new(pkey, NULL))) in test_redirect()
291 if (!TEST_ptr_null(ctx = EVP_PKEY_CTX_new(pkey, e)) in test_redirect()
301 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new(pkey, e))) in test_redirect()
313 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new(pkey, e))) in test_redirect()
326 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new(pkey, NULL)) in test_redirect()
342 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new(pkey, NULL)) in test_redirect()
Ddsa_no_digest_size_test.c158 if (!TEST_ptr(ctx = EVP_PKEY_CTX_new(pkey, NULL))) in sign_and_verify()
/third_party/openssl/doc/man3/
DEVP_PKEY_CTX_new.pod5 EVP_PKEY_CTX_new, EVP_PKEY_CTX_new_id, EVP_PKEY_CTX_new_from_name,
14 EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e);
28 The EVP_PKEY_CTX_new() function allocates public key algorithm context using
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
DEVP_PKEY_verify.pod22 using L<EVP_PKEY_CTX_new(3)> or variants thereof. The algorithm is used to
71 ctx = EVP_PKEY_CTX_new(verify_key, NULL /* no engine */);
91 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_derive.pod24 using L<EVP_PKEY_CTX_new(3)> or variants thereof. The algorithm is used to
75 ctx = EVP_PKEY_CTX_new(pkey, eng);
99 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_verify_recover.pod24 using L<EVP_PKEY_CTX_new(3)> or variants thereof. The algorithm is used to
79 ctx = EVP_PKEY_CTX_new(verify_key, NULL /* no engine */);
105 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_sign.pod22 using L<EVP_PKEY_CTX_new(3)> or variants thereof. The algorithm is used to
75 ctx = EVP_PKEY_CTX_new(signing_key, NULL /* no engine */);
102 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_decrypt.pod69 ctx = EVP_PKEY_CTX_new(key, eng);
93 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_encrypt.pod72 ctx = EVP_PKEY_CTX_new(key, eng);
98 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_keygen.pod51 The key algorithm context must be created using L<EVP_PKEY_CTX_new(3)> or
171 ctx = EVP_PKEY_CTX_new(param, eng);
209 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_CTX_get0_libctx.pod39 L<EVP_PKEY_CTX_new(3)>
DEVP_PKEY_CTX_set1_pbe_pass.pod53 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_get_default_digest_nid.pod48 L<EVP_PKEY_CTX_new(3)>,
DEVP_PKEY_settable_params.pod66 L<EVP_PKEY_CTX_new(3)>, L<provider-keymgmt(7)>, L<OSSL_PARAM(3)>,
DEVP_PKEY_print_private.pod57 L<EVP_PKEY_CTX_new(3)>,
/third_party/openssl/doc/man7/
DEVP_PKEY-SM2.pod70 pctx = EVP_PKEY_CTX_new(pkey, NULL);
79 L<EVP_PKEY_CTX_new(3)>,
DX25519.pod60 L<EVP_PKEY_CTX_new(3)>,
DRSA-PSS.pod48 L<EVP_PKEY_CTX_new(3)>,
/third_party/openssl/crypto/evp/
Dp_open.c36 if ((pctx = EVP_PKEY_CTX_new(priv, NULL)) == NULL) { in EVP_OpenInit()
/third_party/openssl/apps/
Dpkeyparam.c117 ctx = EVP_PKEY_CTX_new(pkey, e); in pkeyparam_main()
Dspeed.c1326 kctx = EVP_PKEY_CTX_new(params, NULL); in get_ecdsa()
2366 loopargs[i].rsa_sign_ctx[testnum] = EVP_PKEY_CTX_new(rsa_key, NULL); in speed_main()
2398 loopargs[i].rsa_verify_ctx[testnum] = EVP_PKEY_CTX_new(rsa_key, in speed_main()
2444 loopargs[i].dsa_sign_ctx[testnum] = EVP_PKEY_CTX_new(dsa_key, in speed_main()
2477 loopargs[i].dsa_verify_ctx[testnum] = EVP_PKEY_CTX_new(dsa_key, in speed_main()
2523 loopargs[i].ecdsa_sign_ctx[testnum] = EVP_PKEY_CTX_new(ecdsa_key, in speed_main()
2556 loopargs[i].ecdsa_verify_ctx[testnum] = EVP_PKEY_CTX_new(ecdsa_key, in speed_main()
2607 || (ctx = EVP_PKEY_CTX_new(key_A, NULL)) == NULL /* derivation ctx from skeyA */ in speed_main()
2626 if ((test_ctx = EVP_PKEY_CTX_new(key_B, NULL)) == NULL /* test ctx from skeyB */ in speed_main()
2831 sm2_pctx = EVP_PKEY_CTX_new(sm2_pkey, NULL); in speed_main()
[all …]
/third_party/rust/crates/rust-openssl/openssl/src/
Dencrypt.rs83 let pctx = cvt_p(ffi::EVP_PKEY_CTX_new(pkey.as_ptr(), ptr::null_mut()))?; in new()
287 let pctx = cvt_p(ffi::EVP_PKEY_CTX_new(pkey.as_ptr(), ptr::null_mut()))?; in new()
Dderive.rs78 cvt_p(ffi::EVP_PKEY_CTX_new(key.as_ptr(), ptr::null_mut())) in new()
/third_party/openssl/doc/life-cycles/
Dpkey.dot18 begin -> newed [label="EVP_PKEY_CTX_new"];
/third_party/libwebsockets/lib/tls/openssl/
Dlws-genec.c253 *pctx = EVP_PKEY_CTX_new(pkey, NULL); in lws_genec_keypair_import()
382 ctx->ctx[side] = EVP_PKEY_CTX_new(pkey, NULL); in lws_genec_new_keypair()

123