Home
last modified time | relevance | path

Searched refs:RSA_METHOD (Results 1 – 25 of 27) sorted by relevance

12

/freebsd/crypto/openssl/crypto/rsa/
H A Drsa_meth.c20 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 Drsa_ossl.c33 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 Drsa_local.h59 const RSA_METHOD *meth;
H A Drsa_lib.c39 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 DRSA_meth_new.pod27 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 DRSA_set_method.pod17 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 DRSA_check_key.pod68 elements directly, bypassing the RSA_METHOD table altogether (and
71 RSA_METHOD function table so that alternative implementations can also
H A DENGINE_add.pod122 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 Drsa.h298 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 Dengine.h497 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 Dtypes.h144 typedef struct rsa_meth_st RSA_METHOD; typedef
/freebsd/crypto/openssl/crypto/engine/
H A Dtb_rsa.c66 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 Deng_local.h114 const RSA_METHOD *rsa_meth;
H A DREADME.md76 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 Dtypes.h18 typedef struct rsa_meth_st RSA_METHOD; typedef
/freebsd/crypto/openssh/
H A Dssh-pkcs11-client.c66 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 Dssh-pkcs11.c191 static RSA_METHOD *rsa_method;
/freebsd/crypto/heimdal/lib/hx509/
H A Dks_p11.c216 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 Dks_keychain.c236 static const RSA_METHOD kc_rsa_pkcs1_method = {
H A Dhxtool.c1389 const RSA_METHOD *m = RSA_get_default_method(); in info()
/freebsd/crypto/openssl/test/
H A Denginetest.c365 RSA_METHOD *rsameth = NULL; in test_x509_dup_w_engine()
H A Devp_extra_test.c1210 RSA_METHOD *rsa_meth = NULL; in test_EVP_PKEY_sign_with_app_method()
/freebsd/crypto/openssl/util/
H A Dindent.pro366 -T RSA_METHOD
/freebsd/crypto/openssl/engines/
H A De_capi.c398 static RSA_METHOD *capi_rsa_method = NULL;
412 const RSA_METHOD *ossl_rsa_meth; in capi_init()
/freebsd/crypto/openssl/
H A DNEWS.md173 * 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

12