SSL tunnel implementation in C #

As part of a larger application, I need to implement an SSL tunnel in C #. I was wondering if there is a better way to do this instead of writing each step of the SSL negotiation yourself, which sounds like reinventing the wheel.

Do you know if there are any libraries that I could use to minimize the code I need to write, or any manuals that show how this or a similar thing can be implemented most effectively in .NET ?

+3
source share
3 answers

SSlStream should do most of the work for you.

+4
source
0

, SSL-. , , ( ), SSL , , , SSL , . SSL/TLS. SecureBlackbox . SecureBlackbox SSL/TLS .

, SSL, - . , ( SOCKS HTTP CONNECT) . - , ( , ) , . , (, ) , SOCKS HTTP CONNECT .

-1

Source: https://habr.com/ru/post/1741910/


All Articles