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.

link|improve this question

Please define what you mean by "native". – GregS Sep 6 '10 at 22:14
Sorry, my English is not native :) – user375487 Sep 9 '10 at 0:23
feedback

1 Answer

Our SecureBlackbox product provides client-side and server-side components for DTLS.

link|improve this answer
Thanks, Eugene. I know it. That's why I asked for native ways. – user375487 Sep 5 '10 at 20:15
Another reason to ask is that I would pretty much enjoy the kind of interface SslStream offers. – user375487 Sep 5 '10 at 20:18
I doubt that you will find anything - DTLS is quite specific and not very popular thing. Also, SslStream is a stream class, and turning UDP (DTLS-secured or not) into stream is a layer adds certain business logic, it's not just replace an interface and you are done. – Eugene Mayevski 'EldoS Corp Sep 5 '10 at 20:45
Yes, I understand this. By interface I meant being able to layer encryption on top of any kind of stream. Such underlying stream could "consist" of encrypted packets sent via UDP from a certain endpoint. – user375487 Sep 5 '10 at 21:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.