Is there a C# secure socket other than SSLStream?

Posted by AI0867 on Stack Overflow See other posts from Stack Overflow or by AI0867
Published on 2010-05-17T17:06:56Z Indexed on 2010/05/17 17:10 UTC
Read the original article Hit count: 716

Filed under:
|
|
|

.NET 2.0 provides only the System.Net.Security.SslStream class for secure sockets in .NET 2.0 and higher, but this uses the Stream interface, which provides the blocking Read/Write members and asynchronous Begin{Read,Write} members.

I'm looking for a class that provides functionality similar to System.Net.Sockets.Socket. Specifically, something resembling Poll/Select, so I can handle multiple sockets in a single thread without blocking.

The mentalis security library supplies a SecureSocket class, but is explicitly unsupported for versions greater than .NET 1.1.

© Stack Overflow or respective owner

Related posts about c#

Related posts about ssl