Reputation: 1223
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
Reputation: 5358
The most common and probably one of the best libraries is OpenSSL
UPDATE
.NET wrapper for OpenSSL library
Upvotes: 2
Reputation: 46095
SslStream class in .NET framework, or our SSL components if you need advanced functionality and complete control.
Upvotes: 3