Counterpart.NETs NetworkStream / SslStream in Delphi 7

I wrote a secure TCP server in .NET. It was as simple as instantiating the TcpListener and migrating the connected NetworkStreams client using SslStreams.

Now I need to access this TCP server using Delphi 7 (alternatively: Delphi 2007).

I did not find anything to help, and many complex commercial packages appeared in a Google search. Is there a simpler solution, or something integrated into Delphi that I missed?

If not, are there any simple free or commercial packages that I could use?

0
source share
5 answers

You can also use Synapse , which is also a free solution that is easy to use. It differs from Indy in that it does not use components, but rather simple blocking functions. To support SSL, Synapse supports the use of OpenSSL with an easy-to-use shell.

+2
source

Indy . It's free. A version of it even came with Delphi 7, although I recommend that you download a newer version. (The webpage I linked calls her Indy.Sockets to distinguish it from some of the other projects Indy has forked into.)

+2
source

See OpenSSL with Delphi . He mentions Indy and DelphiWebStart .

+1
source

ICS , a package of Internet components. It's free.

0
source

None of Indy / ICS / Synapse has built-in SSL. They plug in third-party modules such as OpenSSL or our SecureBlackbox .

-one
source

All Articles