I recently ported all my NetworkStream code to async Sockets (the SocketAsyncEventArgs model). Now that's finally done, I wanted to port all the SSLStream code to async SSL Sockets, only to find out they don't exist.
My application really needs SSL support, and it will be a pain to have to maintain two completely different communication-models (one based on Sockets and one based on Streams).
I already found out that the SSL protocol is unsuitable for async operations, but all I need is just a wrapper library/class that has an identical interface as normal sockets, so I can keep all the code the same. I don't care if it uses synchronous calls behind the scenes, or doesn't have the same performance.
Does someone know if such a wrapper exist?