Search found 41 matches: libcrypto

Return to advanced search

Re: Compiler with MSVC y HARBOUR

... There are these additional files in Adhemar's zip - here with ChatGPT what they are for. Best regards, Otto The files libssl-1_1-x64.dll, libcrypto-1_1-x64.dll, and libcurl-x64.dll are essential dynamic link library (DLL) files commonly used in Windows environments to provide SSL/TLS, ...
by Otto
Sat Apr 20, 2024 6:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiler with MSVC y HARBOUR
Replies: 3
Views: 186

Re: Compiler with MSVC y HARBOUR

... then mod harbour no longer works. I have seen that I need the following files additionally: c:\Apache24\bin\libssl-1_1-x64.dll c:\Apache24\bin\libcrypto-1_1-x64.dll c:\Apache24\bin\libcurl-x64.dll Perhaps we could then create a Fivewin test program that checks all files and settings. Possibly ...
by Otto
Fri Apr 19, 2024 6:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiler with MSVC y HARBOUR
Replies: 3
Views: 186

Re: xHarbour.org updated!

Are you sure you have put tip.lib AFTER tipsll.lib, libssl.lib and libcrypto.lib? Enrico, asi? echo %hdirl%\libcrypto.lib + >> b32.bcecho %hdirl%\libssl.lib + >> b32.bcecho %hdirl%\tipssl.lib + >> b32.bcecho %hdirl%\tip.lib + >> b32.bc  ...
by Enrico Maria Giordano
Wed Sep 20, 2023 6:09 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 39092

Re: xHarbour.org updated!

Are you sure you have put tip.lib AFTER tipsll.lib, libssl.lib and libcrypto.lib?


Enrico, asi?

Code: Select all  Expand view

echo %hdirl%\libcrypto.lib + >> b32.bc
echo %hdirl%\libssl.lib + >> b32.bc
echo %hdirl%\tipssl.lib + >> b32.bc
echo %hdirl%\tip.lib + >> b32.bc
 


Regards, saludos.
by karinha
Wed Sep 20, 2023 4:55 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 39092

Re: xHarbour.org updated!

... Unable to perform link* Linking errors *  Are you sure you have put tip.lib AFTER tipsll.lib, libssl.lib and libcrypto.lib?
by Enrico Maria Giordano
Wed Sep 20, 2023 4:18 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 39092

Re: xHarbour.org updated!

Have you put libssl.lib and libcrypto.lib too? Yes Enrico! My hbmake file: #BCC VERSION=BCB.01 !ifndef CC_DIR CC_DIR = $(MAKE_DIR) !endif !ifndef HB_DIR HB_DIR = $(HARBOUR_DIR) !endif RECURSE= NO SHELL = COMPRESS = NO EXTERNALLIB = YES ...
by wartiaga
Tue Sep 19, 2023 5:02 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 39092

Re: xHarbour.org updated!

Have you put libssl.lib and libcrypto.lib too?
by Enrico Maria Giordano
Tue Sep 19, 2023 2:02 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 39092

Re: How to get libssl.lib and libcrypto.lib for MSC?

I just realize that the two libs for MSC (libssl.lib and libcrypto.lib) are already in the openssl distribution package (in the lib folder) so we don't need to build them ourself.
by Enrico Maria Giordano
Sat Jul 29, 2023 8:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to get libssl.lib and libcrypto.lib for MSC?
Replies: 3
Views: 279

Re: How to get libssl.lib and libcrypto.lib for MSC?

https://i.imgur.com/DSHNUkE.png https://i.imgur.com/B0C5VvV.png vc_dll2lib.bat @echo off REM Usage: dll2lib [32|64] some-file.dll REM REM Generates some-file.lib from some-file.dll, making an intermediate REM some-file.def from the results of dumpbin /exports some-fi...
by carlos vargas
Wed Jul 26, 2023 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to get libssl.lib and libcrypto.lib for MSC?
Replies: 3
Views: 279

How to get libssl.lib and libcrypto.lib for MSC?

Dear friends, what is the syntax to get libssl.lib and libcrypto.lib for MSC?
by Enrico Maria Giordano
Wed Jul 26, 2023 4:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to get libssl.lib and libcrypto.lib for MSC?
Replies: 3
Views: 279

Re: Crear HBSSL.LIB con CMS para firma de Xml

el flag a incluir en hbssl.hbm es:

-iflag=-a

pero parece que no lo usa. Asi que finamente lo más sencillo es crearlas a mano:

c:\bcc7\bin\implib -a libcrypto-3.lib libcrypto-3.dll
c:\bcc7\bin\implib -a libssl-3.lib libssl-3.dll

ahora si incluyen los subrayados iniciales y deberían funcionar :-)
by Antonio Linares
Sat Jun 03, 2023 8:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear HBSSL.LIB con CMS para firma de Xml
Replies: 24
Views: 1235

Re: Crear HBSSL.LIB con CMS para firma de Xml

... este warning modificando hbssl.hbm y añadiendo esto: -cflag+=-w-8080 tambien he añadido estas líneas en hbssl.hbp: -depimplibs=openssl:../bin/libcrypto-3.dll -depimplibs=openssl:../bin/libssl-3.dll y las librerias de importación se han creado correctamente :-) Aqui tienes todas las librerías: ...
by Antonio Linares
Sat Jun 03, 2023 6:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear HBSSL.LIB con CMS para firma de Xml
Replies: 24
Views: 1235

Re: Crear HBSSL.LIB con CMS para firma de Xml

Prueba a enlazar c:\OpenSSL-Win32\lib\libcrypto.lib y c:\OpenSSL-Win32\lib\libssl.lib
by Antonio Linares
Thu Jun 01, 2023 7:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear HBSSL.LIB con CMS para firma de Xml
Replies: 24
Views: 1235

Crear HBSSL.LIB con CMS para firma de Xml

... libcrypto-3.dll     -depimplibs=openssl:../bin/libssl-3.dll        -depimplibs=openssl:../bin/libcrypto-1_1-x64.dll-depimplibs=openssl:../bin/libssl-1_1-x64.dllhbssl.hbm{allwin&HBMK_HAS_OPENSSL}-cflag=-I${HB_WITH_OPENSSL}/../inc32-iflag={bcc}-a{hbdyn&win}-instfile=depimplibsrc:${HBMK_DIR_OPENSSL}/../bin/*.dll ...
by acuellar
Wed May 31, 2023 4:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear HBSSL.LIB con CMS para firma de Xml
Replies: 24
Views: 1235
Next

Return to advanced search