Is there a C# secure socket other than SSLStream?
- by AI0867
.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.