ExDTLS
DTLS and DTLS-SRTP handshake library for Elixir, based on OpenSSL.
ElixirDTLS allows user to perform DTLS handshake (including DTLS-SRTP one) without requiring any socket. Instead, it generates DTLS packets that user has to transport to the peer. Thanks to this DTLS handshake can be performed on the third party socket e.g. one used to establish connection via ICE protocol.
Installation
The package can be installed by adding ex_dtls
to your list of dependencies in mix.exs
:
def deps do
[
{:ex_dtls, "~> 0.2.0"}
]
end
Usage
Init ExDTLS
on both peers with:
{:ok, dtls} = ExDTLS.start_link(client_mode, dtls_srtp)
On a peer running in a client mode start performing DTLS handshake
{:ok, packets} = ExDTLS.do_handshake(dtls)
This will generate initial handshake packets. Now we have to pass them on the second peer. You can use for that e.g. a TCP socket, but we will not cover this here.
After receiving initial DTLS packets on the second peer pass them to ExDTLS
{:ok, packets} = ExDTLS.do_handshake(dtls, packets)
As a result, we will also get some new packets that have to be passed to the first peer.
After some back and forth DTLS handshake should be finished successfully.
Peer that finishes handshake first will return {:finished_with_packets, handshake_data, packets}
message. These packets have to be sent to the second peer, so it can finish its handshake too and
return {:finished, handshake_data}
message.
For more complete examples please refer to membrane_ice_plugin where we use ex_dtls
or to our integration tests.
Copyright and License
Copyright 2020, Software Mansion
Licensed under the Apache License, Version 2.0