Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Datagram Transport Layer Security (DTLS) on Android/Java

Has anyone used DTLS on Android or is there an open source Java implementation that supports DTLS?

What are my other options for securing UDP traffic on Android?

like image 297
Soumya Simanta Avatar asked May 26 '10 15:05

Soumya Simanta


1 Answers

DTLS support is not available in pure Java yet. We ended up using OpenSSL through JNI. I doubt you will find anything on Android.

You should use TLS (which means you have to use TCP).

like image 151
ZZ Coder Avatar answered Sep 21 '22 12:09

ZZ Coder