2
votes
3answers
217 views
.NET SslStream doesn’t close TSL connection properly.
It doesn't send close_notify alert before closing the connection. How can I send close_notify alert?
1
vote
2answers
74 views
Using intermediate certificates with SslStream and X509Certificate2 in a server app
I am working on a .Net server application that uses SslStream to provide its SSL sockets. It works with some clients (such as those based on libcurl), but other clients throw errors due to the lack …
1
vote
4answers
742 views
Using SSL and SslStream for peer to peer authentication?
I need to provide secure communication between various processes that are using TCP/IP sockets for communication. I want both authentication and encryption. Rather than re-invent the wheel I would …
1
vote
1answer
410 views
SslStream on TCP Server fails to validate client certificate with RemoteCertificateNotAvailable
This question is all about solving a SslPolicyError.RemoteCertificateNotAvailable error.
I have developed a TCP Server with SSLStream and a TCP Client for the other end.
I authenticate the server …
0
votes
1answer
124 views
Socket.ReceiveAsync and SslStream
Hi,
It seems that I cannot get the benefit of ReceiveAsync when using SslStream since I will have to do the reading through SslStream, which only supports the Begin* End* async model.
Is it possible …
0
votes
1answer
123 views
Using SslStream with IOCP
I have written a TCP server using the Socket class's asynchronous/IOCP methods, BeginSend()/BeginRead()/etc. I would like to add SSL capability using SslStream, but from the interface it looks like …
0
votes
1answer
100 views
Does SslStream use LocalCertificateSelectionCallback when acting as a server?
If I create a SslStream instance like this:
secureStream = new SslStream(stream, true, tlsRemoteCallback, tlsLocalCallback);
And then I use one of the AuthenticateAsServer or …
