aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/bbs/authenticator.ex
diff options
context:
space:
mode:
authorAlex Gleason <alex@alexgleason.me>2020-05-14 08:42:27 -0500
committerAlex Gleason <alex@alexgleason.me>2020-05-14 08:57:38 -0500
commit5b0f27d23d8f60d2e12c0556c56fdb52809398eb (patch)
treef0a6e0761f836d8e667e8d7f65e7e993aede343b /lib/pleroma/bbs/authenticator.ex
parent9cbf17d59fe34a760f8a4f94bc60f78b38ccba06 (diff)
downloadpleroma-5b0f27d23d8f60d2e12c0556c56fdb52809398eb.tar.gz
Pbkdf2.verify_pass --> AuthenticationPlug.checkpw
Diffstat (limited to 'lib/pleroma/bbs/authenticator.ex')
-rw-r--r--lib/pleroma/bbs/authenticator.ex3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/bbs/authenticator.ex b/lib/pleroma/bbs/authenticator.ex
index d4494b003..815de7002 100644
--- a/lib/pleroma/bbs/authenticator.ex
+++ b/lib/pleroma/bbs/authenticator.ex
@@ -4,6 +4,7 @@
defmodule Pleroma.BBS.Authenticator do
use Sshd.PasswordAuthenticator
+ alias Pleroma.Plugs.AuthenticationPlug
alias Pleroma.User
def authenticate(username, password) do
@@ -11,7 +12,7 @@ defmodule Pleroma.BBS.Authenticator do
password = to_string(password)
with %User{} = user <- User.get_by_nickname(username) do
- Pbkdf2.verify_pass(password, user.password_hash)
+ AuthenticationPlug.checkpw(password, user.password_hash)
else
_e -> false
end