All Projects → edgurgel → signaturex

edgurgel / signaturex

Licence: MIT license
Simple key/secret based authentication for APIs

Programming Languages

elixir
2628 projects

Signaturex Build Status

Simple key/secret based authentication for APIs (documentation).

Totally based on https://github.com/mloughran/signature

Usage

You will need Elixir ~> 1.5 and Erlang ~> 20.0

Client side:

params = %{ q: "asdaf" }
signed_params = Signaturex.sign("key", "secret", :put, "/some/path", params)
params = Map.merge(signed_params, params)
query_string = URI.encode_query(params)
HTTPsomething.put("/some/path?" <> query_string)

Server side:

Signaturex.validate("key", "secret", :put, "/some/path", params) # Will return true or false
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].