README.md

# HyperAuth
[![Hex.pm](https://img.shields.io/hexpm/l/plug_hyper_auth.svg)](https://hex.pm/packages/plug_hyper_auth)
[![Hex.pm](https://img.shields.io/hexpm/v/plug_hyper_auth.svg)](https://hex.pm/packages/plug_hyper_auth)
[![Hex.pm](https://img.shields.io/hexpm/dt/plug_hyper_auth.svg)](https://hex.pm/packages/plug_hyper_auth)
[![Build Status](https://travis-ci.org/HyperAuth/ExHyperAuth.svg?branch=master)](https://travis-ci.org/HyperAuth/ExHyperAuth)

Plug for HTTP authentication.

## Installation

The package can be installed by adding `plug_hyper_auth` to your list of
dependencies in `mix.exs`:

```elixir
def deps do
  [
    {:plug_hyper_auth, "~> 0.1.0"}
  ]
end
```

Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and is published on [HexDocs](https://hexdocs.pm). The docs can be found at
[https://hexdocs.pm/plug_hyper_auth](https://hexdocs.pm/plug_hyper_auth).

## Contribute

You can fork and clone it, commit your changes and open a pull request. Remember
to add tests for the code added and try to keep the code clean. Use doc strings
to add Documentation.

### Useful links

Some useful links if you want to contribute to this repository.

  * [RFC 2617 at ietf.org](http://www.ietf.org/rfc/rfc2617.txt)
  * [RFC 2617 at webdav.org](http://www.webdav.org/specs/rfc2617.html)
  * [RFC 7235 at ietf.org](https://tools.ietf.org/html/rfc7235)
  * [RFC 7235 at webdav.org](http://www.webdav.org/specs/rfc7235.html)
  * [RFC 7616 at ietf.org](https://tools.ietf.org/html/rfc7616)