Tagged Questions
1
vote
0answers
42 views
SslStream .NET Class communicate with Java
I have a .NET SSL server that use SslStream class to communicate with clients.
Does anyone know if this class can communicate with sockets of other languages like Java or only with .NET ?
Thanks.
...
1
vote
2answers
431 views
C# SSL secure sockets
I have fine, working communicator application, written in C#. Now I've got to implement secure connection to server. I tried change Socket and TcpClient objects into SslStream, but I got few errors.
...
1
vote
2answers
167 views
SslStream Delays after inactivity
I have written a client app to talk to a third party server app. Its comms is over a custom port with SSL usng the SslStream class.
The server allows permanent connections however I've found I have ...
1
vote
1answer
803 views
Socket.ReceiveAsync and SslStream
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 to ...
0
votes
0answers
63 views
.NET: Async SSL Socket
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 ...
0
votes
1answer
698 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 ...
-1
votes
1answer
194 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.