README.md
# ExSRTP
[](https://hex.pm/packages/ex_srtp)
[](https://hexdocs.pm/ex_srtp/)
Elixir implementation of Secure Real-time Transport Protocol (SRTP) and
Secure Real-time Transport Control Protocol (SRTCP).
It implements the following references:
* [RFC 3711 - The Secure Real-time Transport Protocol (SRTP)](https://tools.ietf.org/html/rfc3711).
## Installation
The package can be installed by adding `ex_srtp` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:ex_srtp, "~> 0.1.0"}
]
end
```