No description
Find a file
Haelwenn 8050c438ea Merge branch 'fix/public-key-warnings' into 'master'
Add `:public_key` to `extra_applications`

See merge request pleroma/elixir-libraries/http_signatures!1
2021-11-09 23:43:00 +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 Merge branch 'fix/public-key-warnings' into 'master' 2021-11-09 23:43:00 +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.