Search code examples
.netdelphisocketssslnetworkstream

Counterpart of .NETs NetworkStream / SslStream in Delphi 7


I have written a secure TCP server in .NET. This was basically as simple as creating a TcpListener instance and wrapping the connected client's NetworkStreams with SslStreams.

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

I haven't found anything in the help, and a Google search shows up lots of complex commercial packages. Is there a simpler solution, or something integrated in Delphi I have overlooked?

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


Solution

  • You can also use Synapse, which is also a free solution which is easy to use. It differs from Indy in that it doesn't use components, but rather simple blocking functions. For the SSL support, Synapse supports the use of OpenSSL via a simple to use wrapper.