Symbol: RSA_METHOD
crypto/heimdal/lib/hx509/hxtool.c
1389
const RSA_METHOD *m = RSA_get_default_method();
crypto/heimdal/lib/hx509/ks_keychain.c
236
static const RSA_METHOD kc_rsa_pkcs1_method = {
crypto/heimdal/lib/hx509/ks_p11.c
216
static const RSA_METHOD *
crypto/heimdal/lib/hx509/ks_p11.c
219
static const RSA_METHOD *p11_rsa_pkcs1_method;
crypto/heimdal/lib/hx509/ks_p11.c
220
RSA_METHOD *new_method;
crypto/heimdal/lib/hx509/ks_p11.c
636
const RSA_METHOD *meth;
crypto/openssh/ssh-pkcs11-client.c
529
RSA_METHOD *rsa_meth = NULL;
crypto/openssh/ssh-pkcs11-client.c
66
RSA_METHOD *rsa_meth;
crypto/openssh/ssh-pkcs11-client.c
94
const RSA_METHOD *meth;
crypto/openssh/ssh-pkcs11.c
191
static RSA_METHOD *rsa_method;
crypto/openssl/crypto/engine/eng_local.h
114
const RSA_METHOD *rsa_meth;
crypto/openssl/crypto/engine/tb_rsa.c
66
const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e)
crypto/openssl/crypto/engine/tb_rsa.c
72
int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth)
crypto/openssl/crypto/rsa/rsa_lib.c
39
const RSA_METHOD *RSA_get_method(const RSA *rsa)
crypto/openssl/crypto/rsa/rsa_lib.c
44
int RSA_set_method(RSA *rsa, const RSA_METHOD *meth)
crypto/openssl/crypto/rsa/rsa_lib.c
50
const RSA_METHOD *mtmp;
crypto/openssl/crypto/rsa/rsa_local.h
59
const RSA_METHOD *meth;
crypto/openssl/crypto/rsa/rsa_meth.c
102
int (*RSA_meth_get_pub_enc(const RSA_METHOD *meth))(int flen, const unsigned char *from,
crypto/openssl/crypto/rsa/rsa_meth.c
108
int RSA_meth_set_pub_enc(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
117
int (*RSA_meth_get_pub_dec(const RSA_METHOD *meth))(int flen, const unsigned char *from,
crypto/openssl/crypto/rsa/rsa_meth.c
123
int RSA_meth_set_pub_dec(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
132
int (*RSA_meth_get_priv_enc(const RSA_METHOD *meth))(int flen, const unsigned char *from,
crypto/openssl/crypto/rsa/rsa_meth.c
138
int RSA_meth_set_priv_enc(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
147
int (*RSA_meth_get_priv_dec(const RSA_METHOD *meth))(int flen, const unsigned char *from,
crypto/openssl/crypto/rsa/rsa_meth.c
153
int RSA_meth_set_priv_dec(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
163
int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))(BIGNUM *r0, const BIGNUM *i, RSA *rsa, BN_CTX *ctx)
crypto/openssl/crypto/rsa/rsa_meth.c
168
int RSA_meth_set_mod_exp(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
177
int (*RSA_meth_get_bn_mod_exp(const RSA_METHOD *meth))(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
crypto/openssl/crypto/rsa/rsa_meth.c
183
int RSA_meth_set_bn_mod_exp(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
196
int (*RSA_meth_get_init(const RSA_METHOD *meth))(RSA *rsa)
crypto/openssl/crypto/rsa/rsa_meth.c
20
RSA_METHOD *RSA_meth_new(const char *name, int flags)
crypto/openssl/crypto/rsa/rsa_meth.c
201
int RSA_meth_set_init(RSA_METHOD *meth, int (*init)(RSA *rsa))
crypto/openssl/crypto/rsa/rsa_meth.c
208
int (*RSA_meth_get_finish(const RSA_METHOD *meth))(RSA *rsa)
crypto/openssl/crypto/rsa/rsa_meth.c
213
int RSA_meth_set_finish(RSA_METHOD *meth, int (*finish)(RSA *rsa))
crypto/openssl/crypto/rsa/rsa_meth.c
219
int (*RSA_meth_get_sign(const RSA_METHOD *meth))(int type,
crypto/openssl/crypto/rsa/rsa_meth.c
22
RSA_METHOD *meth = OPENSSL_zalloc(sizeof(*meth));
crypto/openssl/crypto/rsa/rsa_meth.c
227
int RSA_meth_set_sign(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
237
int (*RSA_meth_get_verify(const RSA_METHOD *meth))(int dtype, const unsigned char *m,
crypto/openssl/crypto/rsa/rsa_meth.c
244
int RSA_meth_set_verify(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
254
int (*RSA_meth_get_keygen(const RSA_METHOD *meth))(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb)
crypto/openssl/crypto/rsa/rsa_meth.c
259
int RSA_meth_set_keygen(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
267
int (*RSA_meth_get_multi_prime_keygen(const RSA_METHOD *meth))(RSA *rsa, int bits, int primes, BIGNUM *e, BN_GENCB *cb)
crypto/openssl/crypto/rsa/rsa_meth.c
272
int RSA_meth_set_multi_prime_keygen(RSA_METHOD *meth,
crypto/openssl/crypto/rsa/rsa_meth.c
37
void RSA_meth_free(RSA_METHOD *meth)
crypto/openssl/crypto/rsa/rsa_meth.c
45
RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth)
crypto/openssl/crypto/rsa/rsa_meth.c
47
RSA_METHOD *ret = OPENSSL_malloc(sizeof(*ret));
crypto/openssl/crypto/rsa/rsa_meth.c
62
const char *RSA_meth_get0_name(const RSA_METHOD *meth)
crypto/openssl/crypto/rsa/rsa_meth.c
67
int RSA_meth_set1_name(RSA_METHOD *meth, const char *name)
crypto/openssl/crypto/rsa/rsa_meth.c
80
int RSA_meth_get_flags(const RSA_METHOD *meth)
crypto/openssl/crypto/rsa/rsa_meth.c
85
int RSA_meth_set_flags(RSA_METHOD *meth, int flags)
crypto/openssl/crypto/rsa/rsa_meth.c
91
void *RSA_meth_get0_app_data(const RSA_METHOD *meth)
crypto/openssl/crypto/rsa/rsa_meth.c
96
int RSA_meth_set0_app_data(RSA_METHOD *meth, void *app_data)
crypto/openssl/crypto/rsa/rsa_ossl.c
39
static RSA_METHOD rsa_pkcs1_ossl_meth = {
crypto/openssl/crypto/rsa/rsa_ossl.c
57
static RSA_METHOD rsa_pkcs1_ossl_meth = {
crypto/openssl/crypto/rsa/rsa_ossl.c
77
static const RSA_METHOD *default_RSA_meth = &rsa_pkcs1_ossl_meth;
crypto/openssl/crypto/rsa/rsa_ossl.c
79
void RSA_set_default_method(const RSA_METHOD *meth)
crypto/openssl/crypto/rsa/rsa_ossl.c
84
const RSA_METHOD *RSA_get_default_method(void)
crypto/openssl/crypto/rsa/rsa_ossl.c
89
const RSA_METHOD *RSA_PKCS1_OpenSSL(void)
crypto/openssl/crypto/rsa/rsa_ossl.c
94
const RSA_METHOD *RSA_null_method(void)
crypto/openssl/engines/e_capi.c
395
static RSA_METHOD *capi_rsa_method = NULL;
crypto/openssl/engines/e_capi.c
407
const RSA_METHOD *ossl_rsa_meth;
crypto/openssl/include/openssl/engine.h
497
OSSL_DEPRECATEDIN_3_0 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth);
crypto/openssl/include/openssl/engine.h
556
OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e);
crypto/openssl/include/openssl/rsa.h
308
OSSL_DEPRECATEDIN_3_0 void RSA_set_default_method(const RSA_METHOD *meth);
crypto/openssl/include/openssl/rsa.h
309
OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_get_default_method(void);
crypto/openssl/include/openssl/rsa.h
310
OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_null_method(void);
crypto/openssl/include/openssl/rsa.h
311
OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_get_method(const RSA *rsa);
crypto/openssl/include/openssl/rsa.h
312
OSSL_DEPRECATEDIN_3_0 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
crypto/openssl/include/openssl/rsa.h
315
OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_PKCS1_OpenSSL(void);
crypto/openssl/include/openssl/rsa.h
483
OSSL_DEPRECATEDIN_3_0 RSA_METHOD *RSA_meth_new(const char *name, int flags);
crypto/openssl/include/openssl/rsa.h
484
OSSL_DEPRECATEDIN_3_0 void RSA_meth_free(RSA_METHOD *meth);
crypto/openssl/include/openssl/rsa.h
485
OSSL_DEPRECATEDIN_3_0 RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth);
crypto/openssl/include/openssl/rsa.h
486
OSSL_DEPRECATEDIN_3_0 const char *RSA_meth_get0_name(const RSA_METHOD *meth);
crypto/openssl/include/openssl/rsa.h
487
OSSL_DEPRECATEDIN_3_0 int RSA_meth_set1_name(RSA_METHOD *meth,
crypto/openssl/include/openssl/rsa.h
489
OSSL_DEPRECATEDIN_3_0 int RSA_meth_get_flags(const RSA_METHOD *meth);
crypto/openssl/include/openssl/rsa.h
490
OSSL_DEPRECATEDIN_3_0 int RSA_meth_set_flags(RSA_METHOD *meth, int flags);
crypto/openssl/include/openssl/rsa.h
491
OSSL_DEPRECATEDIN_3_0 void *RSA_meth_get0_app_data(const RSA_METHOD *meth);
crypto/openssl/include/openssl/rsa.h
492
OSSL_DEPRECATEDIN_3_0 int RSA_meth_set0_app_data(RSA_METHOD *meth,
crypto/openssl/include/openssl/rsa.h
495
int (*RSA_meth_get_pub_enc(const RSA_METHOD *meth))(int flen,
crypto/openssl/include/openssl/rsa.h
500
int RSA_meth_set_pub_enc(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
505
int (*RSA_meth_get_pub_dec(const RSA_METHOD *meth))(int flen,
crypto/openssl/include/openssl/rsa.h
510
int RSA_meth_set_pub_dec(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
515
int (*RSA_meth_get_priv_enc(const RSA_METHOD *meth))(int flen,
crypto/openssl/include/openssl/rsa.h
520
int RSA_meth_set_priv_enc(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
525
int (*RSA_meth_get_priv_dec(const RSA_METHOD *meth))(int flen,
crypto/openssl/include/openssl/rsa.h
530
int RSA_meth_set_priv_dec(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
535
int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))(BIGNUM *r0,
crypto/openssl/include/openssl/rsa.h
539
int RSA_meth_set_mod_exp(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
543
int (*RSA_meth_get_bn_mod_exp(const RSA_METHOD *meth))(BIGNUM *r,
crypto/openssl/include/openssl/rsa.h
550
int RSA_meth_set_bn_mod_exp(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
558
int (*RSA_meth_get_init(const RSA_METHOD *meth))(RSA *rsa);
crypto/openssl/include/openssl/rsa.h
560
int RSA_meth_set_init(RSA_METHOD *rsa, int (*init)(RSA *rsa));
crypto/openssl/include/openssl/rsa.h
562
int (*RSA_meth_get_finish(const RSA_METHOD *meth))(RSA *rsa);
crypto/openssl/include/openssl/rsa.h
564
int RSA_meth_set_finish(RSA_METHOD *rsa, int (*finish)(RSA *rsa));
crypto/openssl/include/openssl/rsa.h
566
int (*RSA_meth_get_sign(const RSA_METHOD *meth))(int type,
crypto/openssl/include/openssl/rsa.h
573
int RSA_meth_set_sign(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
579
int (*RSA_meth_get_verify(const RSA_METHOD *meth))(int dtype,
crypto/openssl/include/openssl/rsa.h
586
int RSA_meth_set_verify(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
592
int (*RSA_meth_get_keygen(const RSA_METHOD *meth))(RSA *rsa, int bits,
crypto/openssl/include/openssl/rsa.h
595
int RSA_meth_set_keygen(RSA_METHOD *rsa,
crypto/openssl/include/openssl/rsa.h
599
int (*RSA_meth_get_multi_prime_keygen(const RSA_METHOD *meth))(RSA *rsa,
crypto/openssl/include/openssl/rsa.h
605
int RSA_meth_set_multi_prime_keygen(RSA_METHOD *meth,
crypto/openssl/test/enginetest.c
364
RSA_METHOD *rsameth = NULL;
crypto/openssl/test/evp_extra_test.c
1705
RSA_METHOD *rsa_meth = NULL;