diff options
author | Moonman <shitposterclub@gmail.com> | 2019-07-14 09:48:42 -0700 |
---|---|---|
committer | Moonman <shitposterclub@gmail.com> | 2019-07-14 09:48:42 -0700 |
commit | f98f7ad1b9c1aede0ddefecfefb73919564d73ed (patch) | |
tree | b8e30db8cd1fc01f88e3bc3b0669830189922c41 /lib/pleroma/web/auth | |
parent | cef4337f950cca5ca9c9dec313efeb8f43aa5a40 (diff) | |
download | pleroma-f98f7ad1b9c1aede0ddefecfefb73919564d73ed.tar.gz |
detect and use sha512-crypt for stored password hash.
Diffstat (limited to 'lib/pleroma/web/auth')
-rw-r--r-- | lib/pleroma/web/auth/pleroma_authenticator.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/web/auth/pleroma_authenticator.ex b/lib/pleroma/web/auth/pleroma_authenticator.ex index a9164ad98..f4234b743 100644 --- a/lib/pleroma/web/auth/pleroma_authenticator.ex +++ b/lib/pleroma/web/auth/pleroma_authenticator.ex @@ -3,7 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.Web.Auth.PleromaAuthenticator do - alias Comeonin.Pbkdf2 + alias Pleroma.Plugs.AuthenticationPlug alias Pleroma.Registration alias Pleroma.Repo alias Pleroma.User @@ -16,7 +16,7 @@ defmodule Pleroma.Web.Auth.PleromaAuthenticator do def get_user(%Plug.Conn{} = conn) do with {:ok, {name, password}} <- fetch_credentials(conn), {_, %User{} = user} <- {:user, fetch_user(name)}, - {_, true} <- {:checkpw, Pbkdf2.checkpw(password, user.password_hash)} do + {_, true} <- {:checkpw, AuthenticationPlug.checkpw(password, user.password_hash)} do {:ok, user} else error -> |