1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.Plugs.DigestPlug do
9 def read_body(conn, opts) do
10 {:ok, body, conn} = Conn.read_body(conn, opts)
11 digest = "SHA-256=" <> (:crypto.hash(:sha256, body) |> Base.encode64())
12 {:ok, body, Conn.assign(conn, :digest, digest)}