Lines Matching defs:impl
145 const OSSL_PARAM params[], ENGINE *impl)
162 return EVP_DigestSignInit(ctx, NULL, type, impl, NULL);
164 return EVP_DigestVerifyInit(ctx, NULL, type, impl, NULL);
214 if (type != NULL && impl == NULL)
223 || impl != NULL
297 if (impl != NULL) {
298 if (!ENGINE_init(impl)) {
304 impl = tmpimpl;
306 if (impl != NULL) {
308 const EVP_MD *d = ENGINE_get_digest(impl, type->type);
312 ENGINE_finish(impl);
321 ctx->engine = impl;
370 int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl)
372 return evp_md_init_internal(ctx, type, NULL, impl);
648 ENGINE *impl)
656 ret = EVP_DigestInit_ex(ctx, type, impl)