Popularity
3.8
Declining
Activity
0.0
Stable
21
2
5
Monthly Downloads: 1,197
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 resource based framework for building Elixir applications -
detergentex
Elixir binding to Detergent erlang library used to call WSDL/SOAP Services. -
accent
Plug for handling the conversion of JSON API keys to different cases.
Scout APM - Leading-edge performance monitoring starting at $39/month
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
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