Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 9 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-15T20:19:51.000Z (over 6 years ago)
- Last Synced: 2024-10-11T11:51:20.321Z (29 days ago)
- Topics: http-digest
- Language: Elixir
- Size: 11.7 KB
- Stars: 4
- Watchers: 3
- 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
[![Hex version](https://img.shields.io/hexpm/v/http_digex.svg "Hex version")](https://hex.pm/packages/http_digex) ![Hex downloads](https://img.shields.io/hexpm/dt/http_digex.svg "Hex downloads") [![Build Status](https://semaphoreci.com/api/v1/techgaun/http_digex/branches/master/badge.svg)](https://semaphoreci.com/techgaun/http_digex) [![Coverage Status](https://coveralls.io/repos/github/techgaun/http_digex/badge.svg?branch=master)](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")
```