Popularity
4.0
Growing
Activity
0.0
Declining
22
4
6
Monthly Downloads: 1,456
Programming language: Elixir
License: MIT License
Tags:
REST And API
Latest version: v1.3.0
signaturex alternatives and similar packages
Based on the "REST and API" category.
Alternatively, view signaturex alternatives based on common mentions on social networks and blogs.
-
Ash Framework
A declarative and extensible framework for building Elixir applications. -
detergentex
Elixir binding to Detergent erlang library used to call WSDL/SOAP Services
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of signaturex or a related project?
README
Signaturex 
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