An Elixir module that does Digest Auth on top of erlangs httpc
{:ok, response} = Digestex.get("http://www.example.com/")
{:ok, response} = Digestex.get_auth("http://www.example.com/", "user", "pass")
If available in Hex, the package can be installed as:
```elixir
def deps do
[{:digestex, "~> 0.4.2"}]
end
```
And then :digestex should be added to you list of applications in mix.exs
You can see usage examples in the test files (located in the
test/
) directory.