No description
Find a file
lain cd38cd6b88 Merge branch 'master' into 'otp26'
# Conflicts:
#   .gitignore
2023-12-23 11:22:18 +00:00
.reuse Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
config Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
lib/http_signatures OTP26 support 2023-12-21 17:16:17 +00:00
LICENSES Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
test Credo should ignore these lines 2023-12-22 18:37:48 -05:00
.credo.exs Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
.formatter.exs Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
.gitignore Ignore mix.lock 2023-12-22 18:42:03 -05:00
.gitlab-ci.yml Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
mix.exs OTP26 support 2023-12-21 17:16:17 +00:00
README.md Make repository REUSE compliant 2022-07-21 17:47:19 +02: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.