TLS > v1.1

General Help regarding HMG, Compilation, Linking, Samples

Moderator: Rathinagiri

Post Reply
User avatar
AUGE_OHR
Posts: 2117
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

TLS > v1.1

Post by AUGE_OHR »

hi,,

i got a Message from WEB.DE that TLS v1.0 and v1.1 will be disable
i have to work with TLS v1.2 or v1.3 but "where" do i get TLS > v1.1 :idea:
have fun
Jimmy
User avatar
danielmaximiliano
Posts: 2763
Joined: Fri Apr 09, 2010 4:53 pm
DBs Used: DBF
Location: Argentina
Contact:

Re: TLS > v1.1

Post by danielmaximiliano »

Jimmy : TlS 1.0 and 1.1 are currently insecure as web browsers are already obsolete and show that a page is insecure,
The TLS 1.2 version has been published in 2008. The main differences compared to its previous version are to improve the encryption algorithms, changing the MD5-SHA-1 methods for SHA-256.
I don't quite understand what you need or want to do
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
Telegram invitation https://t.me/HMGWorkspace
User avatar
AUGE_OHR
Posts: 2117
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

Re: TLS > v1.1

Post by AUGE_OHR »

hi,
danielmaximiliano wrote: Wed May 25, 2022 9:56 pm I don't quite understand what you need or want to do
i do use SSL with ssleay32.dll and libeay32.dll both are v1.0
so where do i get newer Version v1.2 of ssleay32.dll / libeay32.dll :?:
have fun
Jimmy
User avatar
danielmaximiliano
Posts: 2763
Joined: Fri Apr 09, 2010 4:53 pm
DBs Used: DBF
Location: Argentina
Contact:

Re: TLS > v1.1

Post by danielmaximiliano »

Try https://slproweb.com/products/Win32OpenSSL.html
Note :
2022-05-25 20_57_42-_index.html.png
2022-05-25 20_57_42-_index.html.png (40.17 KiB) Viewed 2167 times
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
Telegram invitation https://t.me/HMGWorkspace
User avatar
AUGE_OHR
Posts: 2117
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

Re: TLS > v1.1

Post by AUGE_OHR »

hi,
danielmaximiliano wrote: Wed May 25, 2022 11:59 pm Try https://slproweb.com/products/Win32OpenSSL.html
Note : 2022-05-25 20_57_42-_index.html.png
not sure if it is for harbour HMG as i also need LIB

Code: Select all

libs=hbssl
libs=libeay32
libs=ssleay32
have fun
Jimmy
User avatar
AUGE_OHR
Posts: 2117
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

Re: TLS > v1.1

Post by AUGE_OHR »

hi,

there seems to be a TIP in FiveWin Forum
http://forums.fivetechsupport.com/viewt ... 88#p196088

Description is for BCC but i "think" we also can use it for MinGW as LIB.A seems include
than we need hbSSL Contribution which is in harbour-master

hope it work with HMG
have fun
Jimmy
User avatar
danielmaximiliano
Posts: 2763
Joined: Fri Apr 09, 2010 4:53 pm
DBs Used: DBF
Location: Argentina
Contact:

Re: TLS > v1.1

Post by danielmaximiliano »

download openssl and install to c:\openssl
inside the contrib\hbssl folder create file: compile.bat and run.
I had already solved the batch but I found an old version of it and I don't remember what the problem was that a dependency is missing..
I'm going to see with tests to generate the new version of openssl

batch file:

Code: Select all

@echo off
set backup=%Path%
SET HB_STATIC_OPENSSL=yes
set HB_WITH_OPENSSL=C:\OpenSSL\include\openssl
set backup=%Path%
set path=%path%;C:\OpenSSL\bin;c:\hmg.3.5
call Build.bat hbssl.hbp %2 %3 %4
set path=%backup%
pause
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
Telegram invitation https://t.me/HMGWorkspace
Post Reply