tags:

views:

172

answers:

1

Hello, is there anyone know, what is the best dtls library you know ?.

+1  A: 

You might take a look at OpenSSL. It handles both TLS and DTLS protocols.

To get an example, you might also want to look at the source code of OpenVPN.

I implemented a C++ abstraction layer for both TLS/DTLS using these sources.

Anyway, you'll have to be very patient since OpenSSL API is spread across multiple sources and doesn't provide an effecient way to "search" for a particular function or structure.

ereOn
is there any manual for DTLS implementation ?.
deddihp
You might take a look at the RFC: http://www.rfc-editor.org/rfc/rfc4347.txt Also, i'm afraid DTLS is not much used. You'll probably have to dig into other people's code to get information.
ereOn