Tagged Questions

3
votes
2answers
617 views

.NET SslStream is not working

I am trying inialise a tls tunnel with the .net SslStream but after opening the stream I always get the following error: "Unable to read data from the transport connection: An established connection ...
2
votes
3answers
507 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
3answers
48 views

Transport Layer Security in the .NET framework

I've been asked a question by the boss and actually I can't find any sort of coherent / comprehensive answer out there! So I turn to you, the wise and all-knowing collective of StackOverflow :) The ...
1
vote
1answer
522 views

XMPP TLS connection with SslStream

I am trying to create a simple xmpp client that connects to Gtalk. The first part of the handshake seems to work. Ror the TLS handshake I created a client SslStream, connected to the intended server ...
0
votes
1answer
381 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 ...
-1
votes
1answer
195 views

.NET UDP & DTLS

Is there a native way to provide DTLS support for UDP sockets in .NET? edit by native I mean those that are in .NET framework out-of-the-box.