Alon Ashkenazi
Alon Ashkenazi

Reputation: 1223

Use security in tcp connection

I need to connect a remote server using TCP. the connection need to be secure (SSL/TLS). The question is how can I open a secure connection to the server? Does .net framework have the ability? (I am using c#) Thank you, Alon,

Upvotes: 2

Views: 6269

Answers (2)

Elalfer
Elalfer

Reputation: 5358

The most common and probably one of the best libraries is OpenSSL

UPDATE

.NET wrapper for OpenSSL library

Upvotes: 2

SslStream class in .NET framework, or our SSL components if you need advanced functionality and complete control.

Upvotes: 3

Related Questions