-
-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Closed
Description
I build curl to use it with OpenSSL with command :
nmake /f Makefile.vc mode=dll WITH_SSL=dll SSL_PATH=C:\OpenSSL-Win32
OpenSSL is : OpenSSL 1.0.2o 27 Mar 2018
I have add my engine on openssl configuration file (OPENSSL_CONF=C:\OpenSSL-Win32\bin\openssl.cfg
[openssl_init]
engines=engine_section
[engine_section]
pkcs11=pkcs11_section
[pkcs11_section]
engine_id=pkcs11
dynamic_path=C:/Users/Helene/Desktop/libp11-0.4.7/libp11-0.4.7/src/pkcs11.dll
MODULE_PATH=C:/Windows/SysWOW64/module.dll
init=0
When I list engine with OpenSSL, my engine is OK :
>openssl engine -t
(rdrand) Intel RDRAND engine
[ available ]
(dynamic) Dynamic engine loading support
[ unavailable ]
(pkcs11) pkcs11 engine
[ available ]
But if I list engine with my build curl, I have nothing :
>curl.exe --engine list
Build-time engines:
<none>
If I use installed curl (with SSL support), I have no problem.
Is it my build curl not correct ?
Reactions are currently unavailable