Searched refs:RSA_METHOD (Results 1 – 25 of 38) sorted by relevance
12
| /NextBSD/crypto/openssl/doc/crypto/ |
| HD | RSA_set_method.pod | 13 void RSA_set_default_method(const RSA_METHOD *meth); 15 RSA_METHOD *RSA_get_default_method(void); 17 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth); 19 RSA_METHOD *RSA_get_method(const RSA *rsa); 21 RSA_METHOD *RSA_PKCS1_SSLeay(void); 23 RSA_METHOD *RSA_null_method(void); 27 RSA *RSA_new_method(RSA_METHOD *method); 31 An B<RSA_METHOD> specifies the functions that OpenSSL uses for RSA 37 Initially, the default RSA_METHOD is the OpenSSL internal implementation, 45 RSA_METHOD. However, the meaningfulness of this result is dependent on [all …]
|
| HD | rsa.pod | 39 void RSA_set_default_method(const RSA_METHOD *meth); 40 const RSA_METHOD *RSA_get_default_method(void); 41 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth); 42 const RSA_METHOD *RSA_get_method(const RSA *rsa); 43 RSA_METHOD *RSA_PKCS1_SSLeay(void); 44 RSA_METHOD *RSA_null_method(void); 92 Note that RSA keys may use non-standard B<RSA_METHOD> implementations,
|
| HD | RSA_check_key.pod | 53 elements directly, bypassing the RSA_METHOD table altogether (and 56 RSA_METHOD function table so that alternative implementations can also
|
| HD | RAND_set_rand_method.pod | 61 algorithmic APIs (eg. RSA_METHOD, EVP_CIPHER, etc) in B<ENGINE> modules. If a
|
| /NextBSD/crypto/openssl/crypto/rsa/ |
| HD | rsa_lib.c | 76 static const RSA_METHOD *default_RSA_meth = NULL; 85 void RSA_set_default_method(const RSA_METHOD *meth) in RSA_set_default_method() 90 const RSA_METHOD *RSA_get_default_method(void) in RSA_get_default_method() 110 const RSA_METHOD *RSA_get_method(const RSA *rsa) in RSA_get_method() 115 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth) in RSA_set_method() 121 const RSA_METHOD *mtmp; in RSA_set_method()
|
| HD | rsa.h | 139 const RSA_METHOD *meth; 349 void RSA_set_default_method(const RSA_METHOD *meth); 350 const RSA_METHOD *RSA_get_default_method(void); 351 const RSA_METHOD *RSA_get_method(const RSA *rsa); 352 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth); 358 const RSA_METHOD *RSA_PKCS1_SSLeay(void); 360 const RSA_METHOD *RSA_null_method(void);
|
| HD | rsa_null.c | 87 static RSA_METHOD rsa_null_meth = { 104 const RSA_METHOD *RSA_null_method(void) in RSA_null_method()
|
| HD | rsa_eay.c | 132 static RSA_METHOD rsa_pkcs1_eay_meth = { 150 const RSA_METHOD *RSA_PKCS1_SSLeay(void) in RSA_PKCS1_SSLeay()
|
| /NextBSD/crypto/openssl/crypto/engine/ |
| HD | tb_rsa.c | 114 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e) in ENGINE_get_RSA() 120 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth) in ENGINE_set_RSA()
|
| HD | eng_cryptodev.c | 1135 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); in cryptodev_bn_mod_exp() 1140 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); in cryptodev_bn_mod_exp() 1191 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); in cryptodev_rsa_mod_exp() 1196 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); in cryptodev_rsa_mod_exp() 1207 static RSA_METHOD cryptodev_rsa = { 1486 const RSA_METHOD *rsa_meth = RSA_PKCS1_SSLeay(); in ENGINE_load_cryptodev()
|
| HD | eng_int.h | 179 const RSA_METHOD *rsa_meth;
|
| HD | engine.h | 555 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth); 601 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e);
|
| HD | README | 76 work prior to ENGINE :-). Ie. RSA now has a "RSA_METHOD" pointer again - this 78 the RSA_METHOD would call ENGINE_get_RSA() each time on its ENGINE handle to 80 efficient, switching back to each RSA having an RSA_METHOD pointer also allows 83 have our RSA structure pointing its RSA_METHOD pointer to the software
|
| /NextBSD/crypto/openssl/engines/ |
| HD | e_nuron.c | 269 static RSA_METHOD nuron_rsa = { 329 const RSA_METHOD *meth1; in bind_helper()
|
| HD | e_gmp.c | 131 static RSA_METHOD e_gmp_rsa = { 164 const RSA_METHOD *meth1; in bind_helper()
|
| HD | e_ubsec.c | 147 static RSA_METHOD ubsec_rsa = { 209 const RSA_METHOD *meth1; in bind_helper() 628 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); in ubsec_rsa_mod_exp() 730 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); in ubsec_mod_exp_mont()
|
| HD | e_cswift.c | 164 static RSA_METHOD cswift_rsa = { 236 const RSA_METHOD *meth1; in bind_helper() 735 const RSA_METHOD *def_rsa_method; in cswift_rsa_mod_exp() 772 const RSA_METHOD *def_rsa_method; in cswift_mod_exp_mont()
|
| HD | e_atalla.c | 139 static RSA_METHOD atalla_rsa = { 201 const RSA_METHOD *meth1; in bind_helper()
|
| HD | e_aep.c | 179 static RSA_METHOD aep_rsa = { 273 const RSA_METHOD *meth1; in bind_aep() 789 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); in aep_rsa_mod_exp()
|
| HD | e_sureware.c | 129 static RSA_METHOD surewarehk_rsa = { 235 const RSA_METHOD *meth1; in bind_sureware()
|
| /NextBSD/crypto/openssh/openbsd-compat/ |
| HD | openssl-compat.h | 105 RSA_METHOD *RSA_get_default_method(void);
|
| HD | openssl-compat.c | 164 RSA_METHOD *
|
| /NextBSD/crypto/openssl/crypto/ |
| HD | ossl_typ.h | 147 typedef struct rsa_meth_st RSA_METHOD; typedef
|
| /NextBSD/crypto/openssh/ |
| HD | ssh-pkcs11-client.c | 144 static RSA_METHOD helper_rsa; in wrap_key()
|
| HD | ssh-pkcs11.c | 70 RSA_METHOD rsa_method; 308 const RSA_METHOD *def = RSA_get_default_method(); in pkcs11_rsa_wrap()
|
12