Lines Matching refs:meth
81 void RSA_set_default_method(const RSA_METHOD *meth) in RSA_set_default_method() argument
83 default_RSA_meth = meth; in RSA_set_default_method()
106 return rsa->meth; in RSA_get_method()
109 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth) in RSA_set_method() argument
114 mtmp = rsa->meth; in RSA_set_method()
123 rsa->meth = meth; in RSA_set_method()
124 if (meth->init) meth->init(rsa); in RSA_set_method()
139 ret->meth = RSA_get_default_method(); in RSA_new_method()
155 ret->meth = ENGINE_get_RSA(ret->engine); in RSA_new_method()
156 if(!ret->meth) in RSA_new_method()
184 ret->flags=ret->meth->flags; in RSA_new_method()
195 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) in RSA_new_method()
227 if (r->meth->finish) in RSA_free()
228 r->meth->finish(r); in RSA_free()
291 return(rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding)); in RSA_public_encrypt()
297 return(rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding)); in RSA_private_encrypt()
303 return(rsa->meth->rsa_priv_dec(flen, from, to, rsa, padding)); in RSA_private_decrypt()
309 return(rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding)); in RSA_public_decrypt()
314 return((r == NULL)?0:r->meth->flags); in RSA_flags()
423 rsa->meth->bn_mod_exp, rsa->_method_mod_n); in RSA_setup_blinding()