You can ask the openssl app where it goes looking for engines by
default. Here's what it looks like with the installed openssl on my
machine:
: ; openssl version -e
ENGINESDIR: "/usr/lib/x86_64-linux-gnu/engines-1.1"
Note that engines aren't agnostic to the OpenSSL version...
Cheers,
Ri
019 1:44 PM
> *To:* Swamy J-S
> *Cc:* openssl-users@openssl.org
> *Subject:* Re: Where to copy custom openssl engine library in openssl
> 1.1.0
>
>
>
> *CAUTION:* This email originated from outside of the organization. Do not
> click links or open attachments unless you r
-S
Cc: openssl-users@openssl.org
Subject: Re: Where to copy custom openssl engine library in openssl 1.1.0
CAUTION: This email originated from outside of the organization. Do not click
links or open attachments unless you recognize the sender and know the content
is safe.
Hello,
You should load
Hello,
You should load your engine via config file.
It may look like
=
openssl_conf = openssl_def
[openssl_def]
engines = engine_section
[engine_section]
storeengine = store_section
[store_section]
engine_id = store
dynamic_path = /usr/local/lib/engines/storeengine.so
Your applic
Am working in Ubuntu 18.04 with openssl 1.1.0g version. I built a custom
openssl engine and now i want to use this engine instead of default openssl
engine.
My engine library name is libstoreengine.so and i copied this to
/usr/lib/x86_64-linux-gnu/openssl-1.0.0/engines/ path.
When i run my a