https://github.com/techgaun/http_digex
HTTP Digest Auth Library to create auth header to be used with HTTP Digest Authentication
https://github.com/techgaun/http_digex
http-digest
Last synced: 2 days ago
JSON representation
HTTP Digest Auth Library to create auth header to be used with HTTP Digest Authentication
- Host: GitHub
- URL: https://github.com/techgaun/http_digex
- Owner: techgaun
- License: apache-2.0
- Created: 2016-05-20T23:59:15.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-15T20:19:51.000Z (over 6 years ago)
- Last Synced: 2025-03-26T06:34:36.086Z (19 days ago)
- Topics: http-digest
- Language: Elixir
- Size: 11.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - A module to create basic digest HTTP auth header. (HTTP)
- fucking-awesome-elixir - http_digex - A module to create basic digest HTTP auth header. (HTTP)
- awesome-nepal - http_digex
- awesome-elixir - http_digex - A module to create basic digest HTTP auth header. (HTTP)
README
# http_digex
[](https://hex.pm/packages/http_digex)  [](https://semaphoreci.com/techgaun/http_digex) [](https://coveralls.io/github/techgaun/http_digex?branch=master)
> HTTP Digest Auth Library to create auth header to be used with HTTP Digest Authentication
## Installation
You can install this package from hex as:
```elixir
def deps do
[{:http_digex, "~> 0.0.1"}]
end
```Or you can choose to install from github as:
```elixir
def deps do
[{:egaugex, github: "techgaun/http_digex"}]
end
```## Usage
```elixir
HTTPDigex.create_digest("user", "password", "Admin panel", "/admin.html", "POST")
```