Merge branch 'develop' into 'remove-twitter-api'
[akkoma] / lib / pleroma / bbs / authenticator.ex
index d4494b00304bb25aec03af26b21109cb8bbfab21..815de70020e6cf519fe9c08b06c8557a3e74d68f 100644 (file)
@@ -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