/openssl/crypto/dsa/ |
H A D | dsa_prn.c | 57 pk = EVP_PKEY_new(); in DSA_print() 71 pk = EVP_PKEY_new(); in DSAparams_print()
|
/openssl/fuzz/ |
H A D | dtlsserver.c | 634 pkey = EVP_PKEY_new(); in FuzzerTestOneInput() 659 pkey = EVP_PKEY_new(); in FuzzerTestOneInput() 683 pkey = EVP_PKEY_new(); in FuzzerTestOneInput()
|
H A D | server.c | 554 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 D | x_pubkey.c | 423 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 D | x_all.c | 731 return ASN1_d2i_fp_of(EVP_PKEY, EVP_PKEY_new, d2i_AutoPrivateKey, fp, a); in d2i_PrivateKey_fp() 773 return ASN1_d2i_fp_of(EVP_PKEY, EVP_PKEY_new, d2i_PUBKEY, fp, a); in d2i_PUBKEY_fp() 811 return ASN1_d2i_bio_of(EVP_PKEY, EVP_PKEY_new, d2i_AutoPrivateKey, bp, a); in d2i_PrivateKey_bio() 859 return ASN1_d2i_bio_of(EVP_PKEY, EVP_PKEY_new, d2i_PUBKEY, bp, a); in d2i_PUBKEY_bio()
|
/openssl/doc/man3/ |
H A D | DSA_new.pod | 22 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 D | EVP_PKEY_new.pod | 6 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 D | EVP_PKEY_set1_encoded_public_key.pod | 80 EVP_PKEY *peerkey = EVP_PKEY_new(); 120 L<EVP_PKEY_new(3)>, L<EVP_PKEY_copy_parameters(3)>,
|
H A D | EVP_PKEY_meth_get_count.pod | 46 L<EVP_PKEY_new(3)>
|
H A D | DSA_SIG_new.pod | 47 L<EVP_PKEY_new(3)>, L<EVP_PKEY_free(3)>, L<EVP_PKEY_get_bn_param(3)>,
|
/openssl/ssl/ |
H A D | ssl_rsa_legacy.c | 26 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_use_RSAPrivateKey() 113 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_CTX_use_RSAPrivateKey()
|
H A D | tls_depr.c | 160 ret = EVP_PKEY_new(); in ssl_dh_to_pkey()
|
/openssl/providers/implementations/encode_decode/ |
H A D | encode_key2ms.c | 144 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 D | rsa_prn.c | 42 pk = EVP_PKEY_new(); in RSA_print()
|
/openssl/crypto/asn1/ |
H A D | d2i_param.c | 24 if ((ret = EVP_PKEY_new()) == NULL) in d2i_KeyParams()
|
H A D | d2i_pu.c | 35 if ((ret = EVP_PKEY_new()) == NULL) { in d2i_PublicKey()
|
H A D | d2i_pr.c | 98 if ((ret = EVP_PKEY_new()) == NULL) { in ossl_d2i_PrivateKey_legacy()
|
/openssl/doc/man7/ |
H A D | evp.pod | 30 L<EVP_PKEY_new(3)>. EVP_PKEYs can be associated 93 L<EVP_PKEY_new(3)>,
|
/openssl/crypto/evp/ |
H A D | pmeth_gn.c | 145 *ppkey = allocated_pkey = EVP_PKEY_new(); in EVP_PKEY_generate() 378 allocated_pkey = *ppkey = EVP_PKEY_new(); in EVP_PKEY_fromdata()
|
H A D | evp_pkey.c | 35 if ((pkey = EVP_PKEY_new()) == NULL) { in evp_pkcs82pkey_legacy()
|
/openssl/test/ |
H A D | dsa_no_digest_size_test.c | 154 if (!TEST_ptr(pkey = EVP_PKEY_new())) in sign_and_verify()
|
H A D | endecoder_legacy_test.c | 334 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 D | ecdsatest.c | 230 || !TEST_ptr(pkey = EVP_PKEY_new()) in test_builtin() 235 || !TEST_ptr(pkey_neg = EVP_PKEY_new()) in test_builtin()
|
H A D | evp_pkey_provided_test.c | 411 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()
|
/openssl/crypto/cms/ |
H A D | cms_dh.c | 65 pkpeer = EVP_PKEY_new(); in dh_cms_set_peerkey()
|