Go to file
FloatingGhost 6640ce7d24 add type check 2023-08-07 16:09:10 +01:00
.reuse Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
LICENSES Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
config Ensure header sorting stability 2023-08-07 16:05:25 +01:00
lib/http_signatures add type check 2023-08-07 16:09:10 +01:00
test Make repository REUSE compliant 2022-07-21 17:47:19 +02: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 Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
.gitlab-ci.yml Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
.tool-versions Ensure header sorting stability 2023-08-07 16:05:25 +01:00
README.md Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
mix.exs Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
mix.lock Ensure header sorting stability 2023-08-07 16:05:25 +01:00

README.md

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.