Lines Matching full:engine
64 #include <openssl/engine.h>
99 * to deal with which ENGINE it comes from. */
104 if (dh->engine)
106 ENGINE_finish(dh->engine);
107 dh->engine = NULL;
120 DH *DH_new_method(ENGINE *engine)
133 if (engine)
135 if (!ENGINE_init(engine))
141 ret->engine = engine;
144 ret->engine = ENGINE_get_default_DH();
145 if(ret->engine)
147 ret->meth = ENGINE_get_DH(ret->engine);
151 ENGINE_finish(ret->engine);
177 if (ret->engine)
178 ENGINE_finish(ret->engine);
207 if (r->engine)
208 ENGINE_finish(r->engine);