Lines Matching refs:meth
85 void RSA_set_default_method(const RSA_METHOD *meth) in RSA_set_default_method() argument
87 default_RSA_meth = meth; in RSA_set_default_method()
113 return rsa->meth; in RSA_get_method()
116 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth) in RSA_set_method() argument
121 mtmp = rsa->meth; in RSA_set_method()
130 rsa->meth = meth; in RSA_set_method()
131 if (meth->init) meth->init(rsa); in RSA_set_method()
146 ret->meth = RSA_get_default_method(); in RSA_new_method()
162 ret->meth = ENGINE_get_RSA(ret->engine); in RSA_new_method()
163 if(!ret->meth) in RSA_new_method()
191 ret->flags=ret->meth->flags & ~RSA_FLAG_NON_FIPS_ALLOW; in RSA_new_method()
202 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) in RSA_new_method()
234 if (r->meth->finish) in RSA_free()
235 r->meth->finish(r); in RSA_free()