Home
last modified time | relevance | path

Searched refs:EVP_PKEY_new (Results 1 – 25 of 50) sorted by relevance

12

/openssl/crypto/dsa/
H A Ddsa_prn.c57 pk = EVP_PKEY_new(); in DSA_print()
71 pk = EVP_PKEY_new(); in DSAparams_print()
/openssl/fuzz/
H A Ddtlsserver.c634 pkey = EVP_PKEY_new(); in FuzzerTestOneInput()
659 pkey = EVP_PKEY_new(); in FuzzerTestOneInput()
683 pkey = EVP_PKEY_new(); in FuzzerTestOneInput()
H A Dserver.c554 pkey = EVP_PKEY_new(); in FuzzerTestOneInput()
577 pkey = EVP_PKEY_new(); in FuzzerTestOneInput()
601 pkey = EVP_PKEY_new(); in FuzzerTestOneInput()
/openssl/crypto/x509/
H A Dx_pubkey.c423 pkey = EVP_PKEY_new(); in x509_pubkey_decode()
633 pktmp = EVP_PKEY_new(); in i2d_RSA_PUBKEY()
675 pktmp = EVP_PKEY_new(); in ossl_i2d_DH_PUBKEY()
716 pktmp = EVP_PKEY_new(); in ossl_i2d_DHx_PUBKEY()
782 pktmp = EVP_PKEY_new(); in i2d_DSA_PUBKEY()
828 if ((pktmp = EVP_PKEY_new()) == NULL) { in i2d_EC_PUBKEY()
870 if ((pktmp = EVP_PKEY_new()) == NULL) { in ossl_i2d_ED25519_PUBKEY()
912 if ((pktmp = EVP_PKEY_new()) == NULL) { in ossl_i2d_ED448_PUBKEY()
954 if ((pktmp = EVP_PKEY_new()) == NULL) { in ossl_i2d_X25519_PUBKEY()
996 if ((pktmp = EVP_PKEY_new()) == NULL) { in ossl_i2d_X448_PUBKEY()
H A Dx_all.c729 return ASN1_d2i_fp_of(EVP_PKEY, EVP_PKEY_new, d2i_AutoPrivateKey, fp, a); in d2i_PrivateKey_fp()
771 return ASN1_d2i_fp_of(EVP_PKEY, EVP_PKEY_new, d2i_PUBKEY, fp, a); in d2i_PUBKEY_fp()
809 return ASN1_d2i_bio_of(EVP_PKEY, EVP_PKEY_new, d2i_AutoPrivateKey, bp, a); in d2i_PrivateKey_bio()
857 return ASN1_d2i_bio_of(EVP_PKEY, EVP_PKEY_new, d2i_PUBKEY, bp, a); in d2i_PUBKEY_bio()
/openssl/doc/man3/
H A DDSA_new.pod22 Applications should instead use L<EVP_PKEY_new(3)> and L<EVP_PKEY_free(3)>.
42 L<EVP_PKEY_new(3)>, L<EVP_PKEY_free(3)>,
H A DEVP_PKEY_new.pod6 EVP_PKEY_new,
26 EVP_PKEY *EVP_PKEY_new(void);
81 The EVP_PKEY_new() function allocates an empty B<EVP_PKEY> structure which is
168 The structure returned by EVP_PKEY_new() is empty. To add a private or public
175 EVP_PKEY_new(), EVP_PKEY_new_raw_private_key(), EVP_PKEY_new_raw_public_key(),
192 EVP_PKEY_new() and EVP_PKEY_free() functions exist in all versions of OpenSSL.
H A DEVP_PKEY_set1_encoded_public_key.pod80 EVP_PKEY *peerkey = EVP_PKEY_new();
120 L<EVP_PKEY_new(3)>, L<EVP_PKEY_copy_parameters(3)>,
H A DEVP_PKEY_meth_get_count.pod46 L<EVP_PKEY_new(3)>
H A DDSA_SIG_new.pod47 L<EVP_PKEY_new(3)>, L<EVP_PKEY_free(3)>, L<EVP_PKEY_get_bn_param(3)>,
/openssl/ssl/
H A Dssl_rsa_legacy.c26 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_use_RSAPrivateKey()
113 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_CTX_use_RSAPrivateKey()
H A Dtls_depr.c160 ret = EVP_PKEY_new(); in ssl_dh_to_pkey()
/openssl/providers/implementations/encode_decode/
H A Dencode_key2ms.c144 if ((pkey = EVP_PKEY_new()) != NULL && set1_key(pkey, key)) in key2msblob_encode()
161 if ((pkey = EVP_PKEY_new()) != NULL && set1_key(pkey, key) in key2pvk_encode()
/openssl/crypto/rsa/
H A Drsa_prn.c42 pk = EVP_PKEY_new(); in RSA_print()
/openssl/crypto/asn1/
H A Dd2i_param.c24 if ((ret = EVP_PKEY_new()) == NULL) in d2i_KeyParams()
H A Dd2i_pu.c35 if ((ret = EVP_PKEY_new()) == NULL) { in d2i_PublicKey()
H A Dd2i_pr.c98 if ((ret = EVP_PKEY_new()) == NULL) { in ossl_d2i_PrivateKey_legacy()
/openssl/doc/man7/
H A Devp.pod30 L<EVP_PKEY_new(3)>. EVP_PKEYs can be associated
93 L<EVP_PKEY_new(3)>,
/openssl/crypto/evp/
H A Dpmeth_gn.c145 *ppkey = allocated_pkey = EVP_PKEY_new(); in EVP_PKEY_generate()
378 allocated_pkey = *ppkey = EVP_PKEY_new(); in EVP_PKEY_fromdata()
H A Devp_pkey.c35 if ((pkey = EVP_PKEY_new()) == NULL) { in evp_pkcs82pkey_legacy()
/openssl/test/
H A Ddsa_no_digest_size_test.c154 if (!TEST_ptr(pkey = EVP_PKEY_new())) in sign_and_verify()
H A Dendecoder_legacy_test.c334 if (!TEST_ptr(decoded_legacy_pkey = EVP_PKEY_new()) in test_protected_PEM()
401 if (!TEST_ptr(decoded_legacy_pkey = EVP_PKEY_new()) in test_unprotected_PEM()
468 if (!TEST_ptr(decoded_legacy_pkey = EVP_PKEY_new()) in test_DER()
H A Decdsatest.c230 || !TEST_ptr(pkey = EVP_PKEY_new()) in test_builtin()
235 || !TEST_ptr(pkey_neg = EVP_PKEY_new()) in test_builtin()
H A Devp_pkey_provided_test.c411 if (!TEST_ptr(copy_pk = EVP_PKEY_new()) in test_fromdata_rsa()
513 if (!TEST_ptr(copy_pk = EVP_PKEY_new()) in do_fromdata_rsa_derive()
1074 if (!TEST_ptr(copy_pk = EVP_PKEY_new()) in test_fromdata_dh_named_group()
1534 if (!TEST_ptr(copy_pk = EVP_PKEY_new()) in test_fromdata_ecx()
1682 if (!TEST_ptr(copy_pk = EVP_PKEY_new()) in test_fromdata_ec()
2072 if (!TEST_ptr(copy_pk = EVP_PKEY_new()) in test_fromdata_dsa_fips186_4()
H A Devp_libctx_test.c145 if (!TEST_ptr(pkey_parm = EVP_PKEY_new()) in test_dsa_param_keygen()
208 if (!TEST_ptr(pkey_parm = EVP_PKEY_new()) in do_dh_param_keygen()

Completed in 59 milliseconds

12