OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EVP_PKEY_METHOD
(Results
1 - 25
of
58
) sorted by relevancy
1
2
3
/src/crypto/external/bsd/openssl.old/dist/crypto/evp/
pmeth_lib.c
22
static STACK_OF(
EVP_PKEY_METHOD
) *app_pkey_methods = NULL;
25
static const
EVP_PKEY_METHOD
*standard_methods[] = {
72
DECLARE_OBJ_BSEARCH_CMP_FN(const
EVP_PKEY_METHOD
*, const
EVP_PKEY_METHOD
*,
75
static int pmeth_cmp(const
EVP_PKEY_METHOD
*const *a,
76
const
EVP_PKEY_METHOD
*const *b)
81
IMPLEMENT_OBJ_BSEARCH_CMP_FN(const
EVP_PKEY_METHOD
*, const
EVP_PKEY_METHOD
*,
84
const
EVP_PKEY_METHOD
*EVP_PKEY_meth_find(int type)
86
EVP_PKEY_METHOD
tmp
[
all
...]
/src/crypto/external/apache2/openssl/dist/crypto/engine/
tb_pkmeth.c
74
const
EVP_PKEY_METHOD
*ENGINE_get_pkey_meth(ENGINE *e, int nid)
76
EVP_PKEY_METHOD
*ret;
99
* Internal function to free up
EVP_PKEY_METHOD
structures before an ENGINE
106
EVP_PKEY_METHOD
*pkm;
eng_openssl.c
83
static int ossl_pkey_meths(ENGINE *e,
EVP_PKEY_METHOD
**pmeth,
616
static
EVP_PKEY_METHOD
*ossl_hmac_meth;
620
EVP_PKEY_METHOD
*meth;
638
static int ossl_pkey_meths(ENGINE *e,
EVP_PKEY_METHOD
**pmeth,
/src/crypto/external/bsd/openssl/dist/crypto/engine/
tb_pkmeth.c
74
const
EVP_PKEY_METHOD
*ENGINE_get_pkey_meth(ENGINE *e, int nid)
76
EVP_PKEY_METHOD
*ret;
99
* Internal function to free up
EVP_PKEY_METHOD
structures before an ENGINE
106
EVP_PKEY_METHOD
*pkm;
eng_openssl.c
83
static int ossl_pkey_meths(ENGINE *e,
EVP_PKEY_METHOD
**pmeth,
613
static
EVP_PKEY_METHOD
*ossl_hmac_meth;
617
EVP_PKEY_METHOD
*meth;
635
static int ossl_pkey_meths(ENGINE *e,
EVP_PKEY_METHOD
**pmeth,
/src/crypto/external/bsd/openssl.old/dist/crypto/engine/
tb_pkmeth.c
70
const
EVP_PKEY_METHOD
*ENGINE_get_pkey_meth(ENGINE *e, int nid)
72
EVP_PKEY_METHOD
*ret;
96
* Internal function to free up
EVP_PKEY_METHOD
structures before an ENGINE
103
EVP_PKEY_METHOD
*pkm;
eng_openssl.c
74
static int ossl_pkey_meths(ENGINE *e,
EVP_PKEY_METHOD
**pmeth,
596
static
EVP_PKEY_METHOD
*ossl_hmac_meth;
600
EVP_PKEY_METHOD
*meth;
618
static int ossl_pkey_meths(ENGINE *e,
EVP_PKEY_METHOD
**pmeth,
/src/crypto/external/bsd/openssl.old/dist/include/crypto/
evp.h
21
const
EVP_PKEY_METHOD
*pmeth;
90
} /*
EVP_PKEY_METHOD
*/ ;
92
DEFINE_STACK_OF_CONST(
EVP_PKEY_METHOD
)
96
extern const
EVP_PKEY_METHOD
cmac_pkey_meth;
97
extern const
EVP_PKEY_METHOD
dh_pkey_meth;
98
extern const
EVP_PKEY_METHOD
dhx_pkey_meth;
99
extern const
EVP_PKEY_METHOD
dsa_pkey_meth;
100
extern const
EVP_PKEY_METHOD
ec_pkey_meth;
101
extern const
EVP_PKEY_METHOD
sm2_pkey_meth;
102
extern const
EVP_PKEY_METHOD
ecx25519_pkey_meth
[
all
...]
/src/crypto/external/bsd/openssl.old/dist/include/openssl/
evp.h
1327
const
EVP_PKEY_METHOD
*EVP_PKEY_meth_find(int type);
1328
EVP_PKEY_METHOD
*EVP_PKEY_meth_new(int id, int flags);
1330
const
EVP_PKEY_METHOD
*meth);
1331
void EVP_PKEY_meth_copy(
EVP_PKEY_METHOD
*dst, const
EVP_PKEY_METHOD
*src);
1332
void EVP_PKEY_meth_free(
EVP_PKEY_METHOD
*pmeth);
1333
int EVP_PKEY_meth_add0(const
EVP_PKEY_METHOD
*pmeth);
1334
int EVP_PKEY_meth_remove(const
EVP_PKEY_METHOD
*pmeth);
1336
const
EVP_PKEY_METHOD
*EVP_PKEY_meth_get0(size_t idx);
1423
void EVP_PKEY_meth_set_init(
EVP_PKEY_METHOD
*pmeth
[
all
...]
/src/crypto/external/apache2/openssl/dist/crypto/evp/
pmeth_lib.c
48
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)
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,
87
const
EVP_PKEY_METHOD
*const *b)
92
static const
EVP_PKEY_METHOD
*evp_pkey_meth_find_added_by_application(int type)
96
EVP_PKEY_METHOD
tmp;
106
const
EVP_PKEY_METHOD
*EVP_PKEY_meth_find(int type
[
all
...]
/src/crypto/external/bsd/openssl/dist/crypto/evp/
pmeth_lib.c
48
typedef const
EVP_PKEY_METHOD
*(*pmeth_fn)(void);
51
static STACK_OF(
EVP_PKEY_METHOD
) *app_pkey_methods = NULL;
79
DECLARE_OBJ_BSEARCH_CMP_FN(const
EVP_PKEY_METHOD
*, pmeth_fn, pmeth_func);
81
static int pmeth_func_cmp(const
EVP_PKEY_METHOD
*const *a, pmeth_fn const *b)
86
IMPLEMENT_OBJ_BSEARCH_CMP_FN(const
EVP_PKEY_METHOD
*, pmeth_fn, pmeth_func);
88
static int pmeth_cmp(const
EVP_PKEY_METHOD
*const *a,
89
const
EVP_PKEY_METHOD
*const *b)
94
static const
EVP_PKEY_METHOD
*evp_pkey_meth_find_added_by_application(int type)
98
EVP_PKEY_METHOD
tmp;
108
const
EVP_PKEY_METHOD
*EVP_PKEY_meth_find(int type
[
all
...]
/src/crypto/external/bsd/openssl/dist/include/openssl/
evp.h
1745
OSSL_DEPRECATEDIN_3_0 const
EVP_PKEY_METHOD
*EVP_PKEY_meth_find(int type);
1746
OSSL_DEPRECATEDIN_3_0
EVP_PKEY_METHOD
*EVP_PKEY_meth_new(int id, int flags);
1748
const
EVP_PKEY_METHOD
*meth);
1749
OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_copy(
EVP_PKEY_METHOD
*dst,
1750
const
EVP_PKEY_METHOD
*src);
1751
OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_free(
EVP_PKEY_METHOD
*pmeth);
1752
OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_meth_add0(const
EVP_PKEY_METHOD
*pmeth);
1753
OSSL_DEPRECATEDIN_3_0 int EVP_PKEY_meth_remove(const
EVP_PKEY_METHOD
*pmeth);
1755
OSSL_DEPRECATEDIN_3_0 const
EVP_PKEY_METHOD
*EVP_PKEY_meth_get0(size_t idx);
1999
OSSL_DEPRECATEDIN_3_0 void EVP_PKEY_meth_set_init(
EVP_PKEY_METHOD
*pmeth
[
all
...]
/src/crypto/external/apache2/openssl/dist/test/
pkey_meth_test.c
53
/* Test of
EVP_PKEY_METHOD
ordering */
60
const
EVP_PKEY_METHOD
*pmeth;
70
TEST_error("
EVP_PKEY_METHOD
table out of order");
/src/crypto/external/bsd/openssl/dist/test/
pkey_meth_test.c
54
/* Test of
EVP_PKEY_METHOD
ordering */
61
const
EVP_PKEY_METHOD
*pmeth;
72
TEST_error("
EVP_PKEY_METHOD
table out of order");
/src/crypto/external/bsd/openssl.old/dist/test/
pkey_meth_test.c
50
/* Test of
EVP_PKEY_METHOD
ordering */
57
const
EVP_PKEY_METHOD
*pmeth;
68
TEST_error("
EVP_PKEY_METHOD
table out of order");
/src/crypto/external/apache2/openssl/dist/include/openssl/
evp.h
1806
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
...]
/src/crypto/external/bsd/openssl/dist/include/crypto/
evp.h
113
const
EVP_PKEY_METHOD
*pmeth;
182
} /*
EVP_PKEY_METHOD
*/ ;
184
DEFINE_STACK_OF_CONST(
EVP_PKEY_METHOD
)
188
const
EVP_PKEY_METHOD
*ossl_dh_pkey_method(void);
189
const
EVP_PKEY_METHOD
*ossl_dhx_pkey_method(void);
190
const
EVP_PKEY_METHOD
*ossl_dsa_pkey_method(void);
191
const
EVP_PKEY_METHOD
*ossl_ec_pkey_method(void);
192
const
EVP_PKEY_METHOD
*ossl_ecx25519_pkey_method(void);
193
const
EVP_PKEY_METHOD
*ossl_ecx448_pkey_method(void);
194
const
EVP_PKEY_METHOD
*ossl_ed25519_pkey_method(void)
[
all
...]
/src/crypto/external/apache2/openssl/dist/include/crypto/
evp.h
123
const
EVP_PKEY_METHOD
*pmeth;
192
} /*
EVP_PKEY_METHOD
*/;
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)
[
all
...]
/src/crypto/external/apache2/openssl/dist/crypto/ec/
ecx_meth.c
784
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)
1436
const
EVP_PKEY_METHOD
*ossl_ecx448_pkey_method(void
[
all
...]
/src/crypto/external/bsd/openssl/dist/crypto/ec/
ecx_meth.c
785
static const
EVP_PKEY_METHOD
ecx25519_pkey_meth = {
795
static const
EVP_PKEY_METHOD
ecx448_pkey_meth = {
911
static const
EVP_PKEY_METHOD
ed25519_pkey_meth = {
922
static const
EVP_PKEY_METHOD
ed448_pkey_meth = {
1343
static const
EVP_PKEY_METHOD
ecx25519_s390x_pkey_meth = {
1353
static const
EVP_PKEY_METHOD
ecx448_s390x_pkey_meth = {
1362
static const
EVP_PKEY_METHOD
ed25519_s390x_pkey_meth = {
1373
static const
EVP_PKEY_METHOD
ed448_s390x_pkey_meth = {
1385
const
EVP_PKEY_METHOD
*ossl_ecx25519_pkey_method(void)
1394
const
EVP_PKEY_METHOD
*ossl_ecx448_pkey_method(void
[
all
...]
/src/crypto/external/apache2/openssl/dist/crypto/dh/
dh_pmeth.c
459
static const
EVP_PKEY_METHOD
dh_pkey_meth = {
493
const
EVP_PKEY_METHOD
*ossl_dh_pkey_method(void)
498
static const
EVP_PKEY_METHOD
dhx_pkey_meth = {
532
const
EVP_PKEY_METHOD
*ossl_dhx_pkey_method(void)
/src/crypto/external/bsd/openssl/dist/crypto/dh/
dh_pmeth.c
466
static const
EVP_PKEY_METHOD
dh_pkey_meth = {
500
const
EVP_PKEY_METHOD
*ossl_dh_pkey_method(void)
505
static const
EVP_PKEY_METHOD
dhx_pkey_meth = {
539
const
EVP_PKEY_METHOD
*ossl_dhx_pkey_method(void)
/src/crypto/external/bsd/openssl.old/dist/crypto/cmac/
cm_pmeth.c
130
const
EVP_PKEY_METHOD
cmac_pkey_meth = {
/src/crypto/external/apache2/openssl/dist/crypto/dsa/
dsa_pmeth.c
258
static const
EVP_PKEY_METHOD
dsa_pkey_meth = {
291
const
EVP_PKEY_METHOD
*ossl_dsa_pkey_method(void)
/src/crypto/external/bsd/openssl/dist/crypto/dsa/
dsa_pmeth.c
261
static const
EVP_PKEY_METHOD
dsa_pkey_meth = {
294
const
EVP_PKEY_METHOD
*ossl_dsa_pkey_method(void)
Completed in 32 milliseconds
1
2
3
Indexes created Thu Aug 20 00:25:57 UTC 2026