2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 23:44:49 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-08-01 01:17:47 +02:00
|
|
|
defmodule Pleroma.Web.Plugs.DigestPlug do
|
|
|
|
alias Plug.Conn
|
|
|
|
require Logger
|
|
|
|
|
|
|
|
def read_body(conn, opts) do
|
|
|
|
{:ok, body, conn} = Conn.read_body(conn, opts)
|
|
|
|
digest = "SHA-256=" <> (:crypto.hash(:sha256, body) |> Base.encode64())
|
|
|
|
{:ok, body, Conn.assign(conn, :digest, digest)}
|
|
|
|
end
|
|
|
|
end
|