No description
Find a file
Haelwenn 04393197b3 Merge branch 'tcit-master-patch-06284' into 'master'
Change license metadata field to a valid SPDX identifier

See merge request pleroma/elixir-libraries/http_signatures!2
2021-09-23 05:31:51 +00:00
config initial commit 2019-05-14 16:55:11 +00:00
lib/http_signatures split_signature: gracefully handle unsigned requests 2019-07-18 15:50:34 +00:00
test add convenience function to get the signature components given a conn 2019-07-17 18:58:16 +00:00
.formatter.exs initial commit 2019-05-14 16:55:11 +00:00
.gitignore initial commit 2019-05-14 16:55:11 +00:00
.gitlab-ci.yml add CI 2019-05-14 16:56:25 +00:00
LICENSE initial commit 2019-05-14 16:55:11 +00:00
mix.exs Change license metadata field to a valid SPDX identifier 2021-09-22 15:49:10 +00:00
README.md make the README more useful 2019-05-14 19:41:00 +00:00

HttpSignatures

Elixir library for manipulating and validating HTTP signatures.

Installation

The package can be installed by adding http_signatures to your list of dependencies in mix.exs:

def deps do
  [
    {:http_signatures, "~> 0.1.0"}
  ]
end

You will need to write an adapter module that compiles with the HTTPSignatures.Adapter behaviour. This is used to fetch the public keys when verifying signatures. The adapter is configured like so:

config :http_signatures, adapter: YourAdapter

Documentation

Published at https://hexdocs.pm/http_signatures.