No description
Find a file
2024-06-12 18:24:18 +01:00
.reuse Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
config Update version, tool versions 2024-06-12 18:20:28 +01:00
lib/http_signatures format 2024-06-12 18:24:18 +01:00
LICENSES Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
test format 2024-06-12 18:24:18 +01: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 .gitignore: mix.lock 2023-12-21 22:42:16 +01:00
.gitlab-ci.yml Make repository REUSE compliant 2022-07-21 17:47:19 +02:00
.tool-versions Update version, tool versions 2024-06-12 18:20:28 +01:00
mix.exs Update version, tool versions 2024-06-12 18:20:28 +01:00
mix.lock format 2024-06-12 18:24:18 +01: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.