Lines Matching refs:meth
24 int DSA_set_method(DSA *dsa, const DSA_METHOD *meth) in DSA_set_method() argument
31 mtmp = dsa->meth; in DSA_set_method()
38 dsa->meth = meth; in DSA_set_method()
39 if (meth->init) in DSA_set_method()
40 meth->init(dsa); in DSA_set_method()
46 return d->meth; in DSA_get_method()
66 ret->meth = DSA_get_default_method(); in DSA_new_method()
68 ret->flags = ret->meth->flags & ~DSA_FLAG_NON_FIPS_ALLOW; /* early default init */ in DSA_new_method()
78 ret->meth = ENGINE_get_DSA(ret->engine); in DSA_new_method()
79 if (ret->meth == NULL) { in DSA_new_method()
86 ret->flags = ret->meth->flags & ~DSA_FLAG_NON_FIPS_ALLOW; in DSA_new_method()
91 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { in DSA_new_method()
116 if (r->meth != NULL && r->meth->finish != NULL) in DSA_free()
117 r->meth->finish(r); in DSA_free()