Reputation: 21
Can anyone please suggest an url to check the DTLS connection. For eg. https://www.howsmyssl.com/ is used to test the TLS protocol.
Thanks in advance
Upvotes: 2
Views: 2231
Reputation: 220
Mbed TLS provides a DTLS server and client sample applications, which you can use to test your DTLS solution against. If you are already using Mbed TLS as your solution, and you wish to test interoperability, you can use a third party DTLS application, such as OpenSSL s_server -dtls
\ OpenSSL s_client -dtls
or gnutls-serv -u
\ gnutls-cli -u
.
Upvotes: 2