Page 1 of 1

new TLS Version

Posted: Wed Jun 22, 2022 1:08 am
by AUGE_OHR
hi,

i have still Problem to change TLS 1.0 and TLS 1.1 to new SSL Version

i do have this hmg32.hbc / hmg64.hbc to build my HMG LIB

Code: Select all

# ***** include this lines *****
libs=hbssl
libs=libeay32
libs=ssleay32
---

i found OpenSSL 1.1.1 and these LIBs
openssl-1.1.1h-win32-mingw\lib\libcrypto.a
openssl-1.1.1h-win32-mingw\lib\libcrypto.dll.a
openssl-1.1.1h-win32-mingw\lib\libssl.a
openssl-1.1.1h-win32-mingw\lib\libssl.dll.a
which have thse DLL
openssl-1.1.1h-win32-mingw\libcrypto-1_1.dll
openssl-1.1.1h-win32-mingw\libssl-1_1.dll
will these work with HMG :?:

p.s. these are 32 BIT LIB, where do i get 64 Bit LIBs :?:

Re: new TLS Version

Posted: Wed Jun 22, 2022 10:15 am
by AUGE_OHR
hi

i have foudn openssl-1.1.1h_1-win32-mingw.zip which include

Code: Select all

libcrypto.a 
libcrypto.dll.a 
libssl.a 
libssl.dll.a 
and

Code: Select all

libcrypto-1_1.dll 
libssl-1_1.dll 
i have copy LIBs to \LIB Folder and *.DLL into App Folder and use *.HBC

Code: Select all

inc=yes
head=native
#libs=hbssl
#libs=libeay32
#libs=ssleay32
libs=crypto 
#libs=crypto.dll
libs=ssl
#libs=ssl.dll
Libs=hbtip
it seems to work this Way :)

p.s. what are libcrypto.dll.a / libssl.dll.a for :?: it seem to work without them
p.s.p.s. where do i find 64 Bit Version ?

Re: new TLS Version

Posted: Wed Jun 22, 2022 6:46 pm
by AUGE_OHR
hi,

these are 32 Bit LIBs and DLL which i use now
DLL have Version 1.1.1.8
HMG_Open_SSL_X86.ZIP
(2.72 MiB) Downloaded 115 times

Re: new TLS Version

Posted: Sat Jun 25, 2022 2:48 pm
by trmpluym
Jimmy,

I use the DLL's I found here. Works with TLS 1.2 and TLS 1.3 ( thanks to EDK )

https://www.hmgforum.com/viewtopic.php?t=6966

Theo