Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/doc/man3/
H A DEVP_PKEY_meth_new.pod6 EVP_PKEY_meth_add0, EVP_PKEY_METHOD,
26 - manipulating EVP_PKEY_METHOD structure
36 typedef struct evp_pkey_method_st EVP_PKEY_METHOD;
38 EVP_PKEY_METHOD *EVP_PKEY_meth_new(int id, int flags);
39 void EVP_PKEY_meth_free(EVP_PKEY_METHOD *pmeth);
40 void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, const EVP_PKEY_METHOD *src);
41 const EVP_PKEY_METHOD *EVP_PKEY_meth_find(int type);
42 int EVP_PKEY_meth_add0(const EVP_PKEY_METHOD *pmeth);
43 int EVP_PKEY_meth_remove(const EVP_PKEY_METHOD *pmeth);
45 void EVP_PKEY_meth_set_init(EVP_PKEY_METHOD *pmeth,
[all …]
H A DEVP_PKEY_meth_get_count.pod16 const EVP_PKEY_METHOD *EVP_PKEY_meth_get0(size_t idx);
18 const EVP_PKEY_METHOD *meth);
H A DEVP_PKEY_set1_RSA.pod135 If I<engine> does not include an B<EVP_PKEY_METHOD> for I<pkey> an
/freebsd/crypto/openssl/crypto/evp/
H A Dpmeth_lib.c48 typedef const EVP_PKEY_METHOD *(*pmeth_fn)(void);
51 static STACK_OF(EVP_PKEY_METHOD) *app_pkey_methods = NULL;
77 DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_METHOD *, pmeth_fn, pmeth_func);
79 static int pmeth_func_cmp(const EVP_PKEY_METHOD *const *a, pmeth_fn const *b) in pmeth_func_cmp()
84 IMPLEMENT_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_METHOD *, pmeth_fn, pmeth_func);
86 static int pmeth_cmp(const EVP_PKEY_METHOD *const *a, in pmeth_cmp()
87 const EVP_PKEY_METHOD *const *b) in pmeth_cmp()
92 static const EVP_PKEY_METHOD *evp_pkey_meth_find_added_by_application(int type) in evp_pkey_meth_find_added_by_application()
96 EVP_PKEY_METHOD tmp; in evp_pkey_meth_find_added_by_application()
106 const EVP_PKEY_METHOD *EVP_PKEY_meth_find(int type) in EVP_PKEY_meth_find()
[all …]
/freebsd/crypto/openssl/include/openssl/
H A Devp.h1806 OSSL_DEPRECATEDIN_3_0 const EVP_PKEY_METHOD *EVP_PKEY_meth_find(int type);
1807 OSSL_DEPRECATEDIN_3_0 EVP_PKEY_METHOD *EVP_PKEY_meth_new(int id, int flags);
1809 const EVP_PKEY_METHOD *meth);
1810 OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst,
1811 const EVP_PKEY_METHOD *src);
1812 OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_free(EVP_PKEY_METHOD *pmeth);
1813 OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_meth_add0(const EVP_PKEY_METHOD *pmeth);
1814 OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_meth_remove(const EVP_PKEY_METHOD *pmeth);
1816 OSSL_DEPRECATEDIN_3_0 const EVP_PKEY_METHOD *EVP_PKEY_meth_get0(size_t idx);
2107 OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_init(EVP_PKEY_METHOD *pmeth,
[all …]
H A Dengine.h300 typedef int (*ENGINE_PKEY_METHS_PTR)(ENGINE *, EVP_PKEY_METHOD **,
588 const EVP_PKEY_METHOD *ENGINE_get_pkey_meth(ENGINE *e, int nid);
H A Dtypes.h121 typedef struct evp_pkey_method_st EVP_PKEY_METHOD; typedef
/freebsd/crypto/openssl/crypto/engine/
H A Dtb_pkmeth.c74 const EVP_PKEY_METHOD *ENGINE_get_pkey_meth(ENGINE *e, int nid) in ENGINE_get_pkey_meth()
76 EVP_PKEY_METHOD *ret; in ENGINE_get_pkey_meth()
106 EVP_PKEY_METHOD *pkm; in engine_pkey_meths_free()
H A Deng_openssl.c83 static int ossl_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth,
616 static EVP_PKEY_METHOD *ossl_hmac_meth;
620 EVP_PKEY_METHOD *meth; in ossl_register_hmac_meth()
638 static int ossl_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth, in ossl_pkey_meths()
/freebsd/crypto/openssl/include/crypto/
H A Devp.h123 const EVP_PKEY_METHOD *pmeth;
194 DEFINE_STACK_OF_CONST(EVP_PKEY_METHOD)
198 const EVP_PKEY_METHOD *ossl_dh_pkey_method(void);
199 const EVP_PKEY_METHOD *ossl_dhx_pkey_method(void);
200 const EVP_PKEY_METHOD *ossl_dsa_pkey_method(void);
201 const EVP_PKEY_METHOD *ossl_ec_pkey_method(void);
202 const EVP_PKEY_METHOD *ossl_ecx25519_pkey_method(void);
203 const EVP_PKEY_METHOD *ossl_ecx448_pkey_method(void);
204 const EVP_PKEY_METHOD *ossl_ed25519_pkey_method(void);
205 const EVP_PKEY_METHOD *ossl_ed448_pkey_method(void);
[all …]
/freebsd/crypto/openssl/crypto/ec/
H A Decx_meth.c784 static const EVP_PKEY_METHOD ecx25519_pkey_meth = {
794 static const EVP_PKEY_METHOD ecx448_pkey_meth = {
916 static const EVP_PKEY_METHOD ed25519_pkey_meth = {
927 static const EVP_PKEY_METHOD ed448_pkey_meth = {
1385 static const EVP_PKEY_METHOD ecx25519_s390x_pkey_meth = {
1395 static const EVP_PKEY_METHOD ecx448_s390x_pkey_meth = {
1404 static const EVP_PKEY_METHOD ed25519_s390x_pkey_meth = {
1415 static const EVP_PKEY_METHOD ed448_s390x_pkey_meth = {
1427 const EVP_PKEY_METHOD *ossl_ecx25519_pkey_method(void) in ossl_ecx25519_pkey_method()
1436 const EVP_PKEY_METHOD *ossl_ecx448_pkey_method(void) in ossl_ecx448_pkey_method()
[all …]
H A Dec_pmeth.c462 static const EVP_PKEY_METHOD ec_pkey_meth = {
501 const EVP_PKEY_METHOD *ossl_ec_pkey_method(void) in ossl_ec_pkey_method()
/freebsd/crypto/openssl/crypto/dh/
H A Ddh_pmeth.c459 static const EVP_PKEY_METHOD dh_pkey_meth = {
493 const EVP_PKEY_METHOD *ossl_dh_pkey_method(void) in ossl_dh_pkey_method()
498 static const EVP_PKEY_METHOD dhx_pkey_meth = {
532 const EVP_PKEY_METHOD *ossl_dhx_pkey_method(void) in ossl_dhx_pkey_method()
/freebsd/crypto/openssl/crypto/dsa/
H A Ddsa_pmeth.c258 static const EVP_PKEY_METHOD dsa_pkey_meth = {
291 const EVP_PKEY_METHOD *ossl_dsa_pkey_method(void) in ossl_dsa_pkey_method()
/freebsd/crypto/openssl/test/
H A Dpkey_meth_test.c60 const EVP_PKEY_METHOD *pmeth; in test_pkey_meths()
H A Denginetest.c191 static EVP_PKEY_METHOD *test_rsa = NULL;
203 static int test_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth, in test_pkey_meths()
H A Devp_extra_test.c3312 static EVP_PKEY_METHOD *custom_pmeth;
5476 static EVP_PKEY_METHOD *custom_pmeth = NULL;
5477 static const EVP_PKEY_METHOD *orig_pmeth = NULL;
/freebsd/crypto/openssl/crypto/rsa/
H A Drsa_pmeth.c816 static const EVP_PKEY_METHOD rsa_pkey_meth = {
851 const EVP_PKEY_METHOD *ossl_rsa_pkey_method(void) in ossl_rsa_pkey_method()
908 static const EVP_PKEY_METHOD rsa_pss_pkey_meth = {
932 const EVP_PKEY_METHOD *ossl_rsa_pss_pkey_method(void) in ossl_rsa_pss_pkey_method()
/freebsd/crypto/openssl/engines/
H A De_dasync.c108 static int dasync_pkey(ENGINE *e, EVP_PKEY_METHOD **pmeth,
129 static EVP_PKEY_METHOD *dasync_rsa;
130 static const EVP_PKEY_METHOD *dasync_rsa_orig;
432 static int dasync_pkey(ENGINE *e, EVP_PKEY_METHOD **pmeth, in dasync_pkey()
/freebsd/crypto/openssl/util/
H A Dindent.pro245 -T EVP_PKEY_METHOD
H A Dother.syms52 EVP_PKEY_METHOD datatype
/freebsd/crypto/openssl/doc/internal/man7/
H A DEVP_PKEY.pod34 structure, and is governed by an associated L<EVP_PKEY_METHOD(3)> and
/freebsd/crypto/openssl/apps/
H A Dlist.c1284 const EVP_PKEY_METHOD *pmeth = EVP_PKEY_meth_get0(i); in list_pkey_meth()
/freebsd/crypto/openssl/
H A DCHANGES.md9956 those which went through EVP_PKEY_METHOD in 1.0.0 and later. Detect
10058 to EVP_PKEY_ASN1_METHOD: this is not in EVP_PKEY_METHOD since the ASN1
10059 handling will be the same no matter what EVP_PKEY_METHOD is used.
10255 * Add functions to copy EVP_PKEY_METHOD and retrieve flags and id.
11589 EVP_PKEY_METHOD before and after signing via the EVP_PKEY_CTRL_PKCS7_SIGN
11660 * Initial engine support for EVP_PKEY_METHOD. New functions to permit
11768 generate keys for any algorithm. Extend and update EVP_PKEY_METHOD to
11780 * Initial definitions for EVP_PKEY_METHOD. This will be a high level public
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile2371 MLINKS+= EVP_PKEY_meth_new.3 EVP_PKEY_METHOD.3