Popularity
4.0
Declining
Activity
2.4
-
27
3
7
Monthly Downloads: 14,252
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.
InfluxDB โ Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.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