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
2010-03-26 09:58:51
is there any manual for DTLS implementation ?.
deddihp
2010-03-27 12:53:14
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
2010-03-27 13:39:49