/freebsd/crypto/openssl/crypto/rsa/ |
H A D | rsa_meth.c | 20 RSA_METHOD *RSA_meth_new(const char *name, int flags) in RSA_meth_new() 22 RSA_METHOD *meth = OPENSSL_zalloc(sizeof(*meth)); in RSA_meth_new() 38 void RSA_meth_free(RSA_METHOD *meth) in RSA_meth_free() 46 RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth) in RSA_meth_dup() 48 RSA_METHOD *ret = OPENSSL_malloc(sizeof(*ret)); in RSA_meth_dup() 64 const char *RSA_meth_get0_name(const RSA_METHOD *meth) in RSA_meth_get0_name() 69 int RSA_meth_set1_name(RSA_METHOD *meth, const char *name) in RSA_meth_set1_name() 84 int RSA_meth_get_flags(const RSA_METHOD *meth) in RSA_meth_get_flags() 89 int RSA_meth_set_flags(RSA_METHOD *meth, int flags) in RSA_meth_set_flags() 95 void *RSA_meth_get0_app_data(const RSA_METHOD *meth) in RSA_meth_get0_app_data() [all …]
|
H A D | rsa_ossl.c | 33 static RSA_METHOD rsa_pkcs1_ossl_meth = { 52 static const RSA_METHOD *default_RSA_meth = &rsa_pkcs1_ossl_meth; 54 void RSA_set_default_method(const RSA_METHOD *meth) in RSA_set_default_method() 59 const RSA_METHOD *RSA_get_default_method(void) in RSA_get_default_method() 64 const RSA_METHOD *RSA_PKCS1_OpenSSL(void) in RSA_PKCS1_OpenSSL() 69 const RSA_METHOD *RSA_null_method(void) in RSA_null_method()
|
H A D | rsa_local.h | 59 const RSA_METHOD *meth;
|
H A D | rsa_lib.c | 39 const RSA_METHOD *RSA_get_method(const RSA *rsa) in RSA_get_method() 44 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth) in RSA_set_method() 50 const RSA_METHOD *mtmp; in RSA_set_method()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | RSA_meth_new.pod | 27 RSA_METHOD *RSA_meth_new(const char *name, int flags); 28 void RSA_meth_free(RSA_METHOD *meth); 30 RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth); 32 const char *RSA_meth_get0_name(const RSA_METHOD *meth); 33 int RSA_meth_set1_name(RSA_METHOD *meth, const char *name); 35 int RSA_meth_get_flags(const RSA_METHOD *meth); 36 int RSA_meth_set_flags(RSA_METHOD *meth, int flags); 38 void *RSA_meth_get0_app_data(const RSA_METHOD *meth); 39 int RSA_meth_set0_app_data(RSA_METHOD *meth, void *app_data); 41 int (*RSA_meth_get_pub_enc(const RSA_METHOD *meth))(int flen, const unsigned char *from, [all …]
|
H A D | RSA_set_method.pod | 17 void RSA_set_default_method(const RSA_METHOD *meth); 19 const RSA_METHOD *RSA_get_default_method(void); 21 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth); 23 const RSA_METHOD *RSA_get_method(const RSA *rsa); 25 const RSA_METHOD *RSA_PKCS1_OpenSSL(void); 36 An B<RSA_METHOD> specifies the functions that OpenSSL uses for RSA 42 Initially, the default RSA_METHOD is the OpenSSL internal implementation, 53 RSA_METHOD. However, the meaningfulness of this result is dependent on 58 B<rsa>. This will replace the RSA_METHOD used by the RSA key and if the 61 work with certain RSA_METHOD implementations (e.g. from an ENGINE module [all …]
|
H A D | RSA_check_key.pod | 68 elements directly, bypassing the RSA_METHOD table altogether (and 71 RSA_METHOD function table so that alternative implementations can also
|
H A D | ENGINE_add.pod | 122 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth); 139 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e); 181 RSA_METHOD - for providing alternative RSA implementations 398 RSA key, any bundled ENGINEs that implement RSA_METHOD will be passed to
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | rsa.h | 298 OSSL_DEPRECATEDIN_3_0 void RSA_set_default_method(const RSA_METHOD *meth); 299 OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_get_default_method(void); 300 OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_null_method(void); 301 OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_get_method(const RSA *rsa); 302 OSSL_DEPRECATEDIN_3_0 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth); 305 OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_PKCS1_OpenSSL(void); 473 OSSL_DEPRECATEDIN_3_0 RSA_METHOD *RSA_meth_new(const char *name, int flags); 474 OSSL_DEPRECATEDIN_3_0 void RSA_meth_free(RSA_METHOD *meth); 475 OSSL_DEPRECATEDIN_3_0 RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth); 476 OSSL_DEPRECATEDIN_3_0 const char *RSA_meth_get0_name(const RSA_METHOD *meth); [all …]
|
H A D | engine.h | 497 OSSL_DEPRECATEDIN_3_0 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth); 554 OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e);
|
H A D | types.h | 144 typedef struct rsa_meth_st RSA_METHOD; typedef
|
/freebsd/crypto/openssl/crypto/engine/ |
H A D | tb_rsa.c | 66 const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e) in ENGINE_get_RSA() 72 int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth) in ENGINE_set_RSA()
|
H A D | eng_local.h | 114 const RSA_METHOD *rsa_meth;
|
H A D | README.md | 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
|
/freebsd/crypto/openssl/include/crypto/ |
H A D | types.h | 18 typedef struct rsa_meth_st RSA_METHOD; typedef
|
/freebsd/crypto/openssh/ |
H A D | ssh-pkcs11-client.c | 66 RSA_METHOD *rsa_meth; 94 const RSA_METHOD *meth; in helper_by_rsa() 529 RSA_METHOD *rsa_meth = NULL; in pkcs11_start_helper_methods()
|
H A D | ssh-pkcs11.c | 191 static RSA_METHOD *rsa_method;
|
/freebsd/crypto/heimdal/lib/hx509/ |
H A D | ks_p11.c | 216 static const RSA_METHOD * 219 static const RSA_METHOD *p11_rsa_pkcs1_method; in get_p11_rsa_pkcs1_method() 220 RSA_METHOD *new_method; in get_p11_rsa_pkcs1_method() 636 const RSA_METHOD *meth; in collect_private_key()
|
H A D | ks_keychain.c | 236 static const RSA_METHOD kc_rsa_pkcs1_method = {
|
H A D | hxtool.c | 1389 const RSA_METHOD *m = RSA_get_default_method(); in info()
|
/freebsd/crypto/openssl/test/ |
H A D | enginetest.c | 365 RSA_METHOD *rsameth = NULL; in test_x509_dup_w_engine()
|
H A D | evp_extra_test.c | 1210 RSA_METHOD *rsa_meth = NULL; in test_EVP_PKEY_sign_with_app_method()
|
/freebsd/crypto/openssl/util/ |
H A D | indent.pro | 366 -T RSA_METHOD
|
/freebsd/crypto/openssl/engines/ |
H A D | e_capi.c | 398 static RSA_METHOD *capi_rsa_method = NULL; 412 const RSA_METHOD *ossl_rsa_meth; in capi_init()
|
/freebsd/crypto/openssl/ |
H A D | NEWS.md | 173 * Deprecated the `RSA` and `RSA_METHOD` types and functions. 453 DH and DH_METHOD, DSA and DSA_METHOD, RSA and RSA_METHOD, 1431 * New DH_METHOD, DSA_METHOD and enhanced RSA_METHOD
|