Symbol: RSA_METHOD
lib/libcrypto/rsa/rsa.h
265
void RSA_set_default_method(const RSA_METHOD *meth);
lib/libcrypto/rsa/rsa.h
266
const RSA_METHOD *RSA_get_default_method(void);
lib/libcrypto/rsa/rsa.h
267
const RSA_METHOD *RSA_get_method(const RSA *rsa);
lib/libcrypto/rsa/rsa.h
268
int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
lib/libcrypto/rsa/rsa.h
270
const RSA_METHOD *RSA_PKCS1_OpenSSL(void);
lib/libcrypto/rsa/rsa.h
271
const RSA_METHOD *RSA_PKCS1_SSLeay(void);
lib/libcrypto/rsa/rsa.h
409
RSA_METHOD *RSA_meth_new(const char *name, int flags);
lib/libcrypto/rsa/rsa.h
410
void RSA_meth_free(RSA_METHOD *meth);
lib/libcrypto/rsa/rsa.h
411
RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth);
lib/libcrypto/rsa/rsa.h
412
int RSA_meth_set1_name(RSA_METHOD *meth, const char *name);
lib/libcrypto/rsa/rsa.h
413
int RSA_meth_set_priv_enc(RSA_METHOD *meth, int (*priv_enc)(int flen,
lib/libcrypto/rsa/rsa.h
415
int RSA_meth_set_priv_dec(RSA_METHOD *meth, int (*priv_dec)(int flen,
lib/libcrypto/rsa/rsa.h
417
int (*RSA_meth_get_finish(const RSA_METHOD *meth))(RSA *rsa);
lib/libcrypto/rsa/rsa.h
418
int RSA_meth_set_finish(RSA_METHOD *meth, int (*finish)(RSA *rsa));
lib/libcrypto/rsa/rsa.h
419
int RSA_meth_set_pub_enc(RSA_METHOD *meth, int (*pub_enc)(int flen,
lib/libcrypto/rsa/rsa.h
421
int RSA_meth_set_pub_dec(RSA_METHOD *meth, int (*pub_dec)(int flen,
lib/libcrypto/rsa/rsa.h
423
int RSA_meth_set_mod_exp(RSA_METHOD *meth, int (*mod_exp)(BIGNUM *r0,
lib/libcrypto/rsa/rsa.h
425
int RSA_meth_set_bn_mod_exp(RSA_METHOD *meth, int (*bn_mod_exp)(BIGNUM *r,
lib/libcrypto/rsa/rsa.h
428
int RSA_meth_set_init(RSA_METHOD *meth, int (*init)(RSA *rsa));
lib/libcrypto/rsa/rsa.h
429
int RSA_meth_set_keygen(RSA_METHOD *meth, int (*keygen)(RSA *rsa, int bits,
lib/libcrypto/rsa/rsa.h
431
int RSA_meth_set_flags(RSA_METHOD *meth, int flags);
lib/libcrypto/rsa/rsa.h
432
int RSA_meth_set0_app_data(RSA_METHOD *meth, void *app_data);
lib/libcrypto/rsa/rsa.h
433
const char *RSA_meth_get0_name(const RSA_METHOD *);
lib/libcrypto/rsa/rsa.h
434
int (*RSA_meth_get_pub_enc(const RSA_METHOD *meth))(int flen,
lib/libcrypto/rsa/rsa.h
436
int (*RSA_meth_get_pub_dec(const RSA_METHOD *meth))(int flen,
lib/libcrypto/rsa/rsa.h
438
int (*RSA_meth_get_priv_enc(const RSA_METHOD *meth))(int flen,
lib/libcrypto/rsa/rsa.h
440
int (*RSA_meth_get_priv_dec(const RSA_METHOD *meth))(int flen,
lib/libcrypto/rsa/rsa.h
442
int (*RSA_meth_get_mod_exp(const RSA_METHOD *meth))(BIGNUM *r0, const BIGNUM *i,
lib/libcrypto/rsa/rsa.h
444
int (*RSA_meth_get_bn_mod_exp(const RSA_METHOD *meth))(BIGNUM *r,
lib/libcrypto/rsa/rsa.h
447
int (*RSA_meth_get_init(const RSA_METHOD *meth))(RSA *rsa);
lib/libcrypto/rsa/rsa.h
448
int (*RSA_meth_get_keygen(const RSA_METHOD *meth))(RSA *rsa, int bits, BIGNUM *e,
lib/libcrypto/rsa/rsa.h
450
int RSA_meth_get_flags(const RSA_METHOD *meth);
lib/libcrypto/rsa/rsa.h
451
void *RSA_meth_get0_app_data(const RSA_METHOD *meth);
lib/libcrypto/rsa/rsa.h
452
int (*RSA_meth_get_sign(const RSA_METHOD *meth))(int type,
lib/libcrypto/rsa/rsa.h
456
int RSA_meth_set_sign(RSA_METHOD *rsa, int (*sign)(int type,
lib/libcrypto/rsa/rsa.h
459
int (*RSA_meth_get_verify(const RSA_METHOD *meth))(int dtype,
lib/libcrypto/rsa/rsa.h
462
int RSA_meth_set_verify(RSA_METHOD *rsa, int (*verify)(int dtype,
lib/libcrypto/rsa/rsa_eay.c
825
static const RSA_METHOD rsa_pkcs1_meth = {
lib/libcrypto/rsa/rsa_eay.c
837
const RSA_METHOD *
lib/libcrypto/rsa/rsa_eay.c
844
const RSA_METHOD *
lib/libcrypto/rsa/rsa_lib.c
102
const RSA_METHOD *
lib/libcrypto/rsa/rsa_lib.c
110
RSA_set_method(RSA *rsa, const RSA_METHOD *meth)
lib/libcrypto/rsa/rsa_lib.c
116
const RSA_METHOD *mtmp;
lib/libcrypto/rsa/rsa_lib.c
74
static const RSA_METHOD *default_RSA_meth = NULL;
lib/libcrypto/rsa/rsa_lib.c
86
RSA_set_default_method(const RSA_METHOD *meth)
lib/libcrypto/rsa/rsa_lib.c
92
const RSA_METHOD *
lib/libcrypto/rsa/rsa_local.h
103
const RSA_METHOD *meth;
lib/libcrypto/rsa/rsa_meth.c
100
RSA_meth_set_priv_dec(RSA_METHOD *meth, int (*priv_dec)(int flen,
lib/libcrypto/rsa/rsa_meth.c
109
RSA_meth_set_finish(RSA_METHOD *meth, int (*finish)(RSA *rsa))
lib/libcrypto/rsa/rsa_meth.c
117
RSA_meth_set_pub_enc(RSA_METHOD *meth, int (*pub_enc)(int flen,
lib/libcrypto/rsa/rsa_meth.c
126
RSA_meth_set_pub_dec(RSA_METHOD *meth, int (*pub_dec)(int flen,
lib/libcrypto/rsa/rsa_meth.c
135
RSA_meth_set_mod_exp(RSA_METHOD *meth, int (*mod_exp)(BIGNUM *r0,
lib/libcrypto/rsa/rsa_meth.c
144
RSA_meth_set_bn_mod_exp(RSA_METHOD *meth, int (*bn_mod_exp)(BIGNUM *r,
lib/libcrypto/rsa/rsa_meth.c
154
RSA_meth_set_init(RSA_METHOD *meth, int (*init)(RSA *rsa))
lib/libcrypto/rsa/rsa_meth.c
162
RSA_meth_set_keygen(RSA_METHOD *meth, int (*keygen)(RSA *rsa, int bits,
lib/libcrypto/rsa/rsa_meth.c
171
RSA_meth_set_flags(RSA_METHOD *meth, int flags)
lib/libcrypto/rsa/rsa_meth.c
179
RSA_meth_set0_app_data(RSA_METHOD *meth, void *app_data)
lib/libcrypto/rsa/rsa_meth.c
187
RSA_meth_get0_name(const RSA_METHOD *meth)
lib/libcrypto/rsa/rsa_meth.c
194
(*RSA_meth_get_pub_enc(const RSA_METHOD *meth))(int flen,
lib/libcrypto/rsa/rsa_meth.c
202
(*RSA_meth_get_pub_dec(const RSA_METHOD *meth))(int flen,
lib/libcrypto/rsa/rsa_meth.c
210
(*RSA_meth_get_priv_enc(const RSA_METHOD *meth))(int flen,
lib/libcrypto/rsa/rsa_meth.c
218
(*RSA_meth_get_priv_dec(const RSA_METHOD *meth))(int flen,
lib/libcrypto/rsa/rsa_meth.c
226
(*RSA_meth_get_mod_exp(const RSA_METHOD *meth))(BIGNUM *r0, const BIGNUM *i,
lib/libcrypto/rsa/rsa_meth.c
234
(*RSA_meth_get_bn_mod_exp(const RSA_METHOD *meth))(BIGNUM *r,
lib/libcrypto/rsa/rsa_meth.c
243
(*RSA_meth_get_init(const RSA_METHOD *meth))(RSA *rsa)
lib/libcrypto/rsa/rsa_meth.c
25
RSA_METHOD *
lib/libcrypto/rsa/rsa_meth.c
250
(*RSA_meth_get_keygen(const RSA_METHOD *meth))(RSA *rsa, int bits, BIGNUM *e,
lib/libcrypto/rsa/rsa_meth.c
258
RSA_meth_get_flags(const RSA_METHOD *meth)
lib/libcrypto/rsa/rsa_meth.c
265
RSA_meth_get0_app_data(const RSA_METHOD *meth)
lib/libcrypto/rsa/rsa_meth.c
272
(*RSA_meth_get_sign(const RSA_METHOD *meth))(int type,
lib/libcrypto/rsa/rsa_meth.c
28
RSA_METHOD *meth;
lib/libcrypto/rsa/rsa_meth.c
282
RSA_meth_set_sign(RSA_METHOD *meth, int (*sign)(int type,
lib/libcrypto/rsa/rsa_meth.c
292
(*RSA_meth_get_verify(const RSA_METHOD *meth))(int dtype,
lib/libcrypto/rsa/rsa_meth.c
301
RSA_meth_set_verify(RSA_METHOD *meth, int (*verify)(int dtype,
lib/libcrypto/rsa/rsa_meth.c
43
RSA_meth_free(RSA_METHOD *meth)
lib/libcrypto/rsa/rsa_meth.c
53
RSA_METHOD *
lib/libcrypto/rsa/rsa_meth.c
54
RSA_meth_dup(const RSA_METHOD *meth)
lib/libcrypto/rsa/rsa_meth.c
56
RSA_METHOD *copy;
lib/libcrypto/rsa/rsa_meth.c
71
RSA_meth_set1_name(RSA_METHOD *meth, const char *name)
lib/libcrypto/rsa/rsa_meth.c
84
(*RSA_meth_get_finish(const RSA_METHOD *meth))(RSA *rsa)
lib/libcrypto/rsa/rsa_meth.c
91
RSA_meth_set_priv_enc(RSA_METHOD *meth, int (*priv_enc)(int flen,
lib/libtls/tls.c
404
RSA_METHOD *rsa_method;
lib/libtls/tls_internal.h
304
RSA_METHOD *tls_signer_rsa_method(void);
lib/libtls/tls_signer.c
377
RSA_METHOD *
lib/libtls/tls_signer.c
380
static RSA_METHOD *rsa_method = NULL;
regress/lib/libcrypto/rsa/rsa_method_test.c
174
const RSA_METHOD *method = RSA_get_method(rsa);
regress/lib/libcrypto/rsa/rsa_method_test.c
197
RSA_METHOD *sign_verify_method = NULL;
usr.sbin/relayd/ca.c
305
static const RSA_METHOD *rsa_default;
usr.sbin/relayd/ca.c
306
static RSA_METHOD *rsae_method;
usr.sbin/smtpd/ca.c
289
const RSA_METHOD *rsa_default = NULL;
usr.sbin/smtpd/ca.c
291
static RSA_METHOD *rsae_method = NULL;