views:

51

answers:

1

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.

A: 

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

Eugene Mayevski 'EldoS Corp
Thanks, Eugene. I know it. That's why I asked for native ways.
Another reason to ask is that I would pretty much enjoy the kind of interface SslStream offers.
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
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.