1
0
Fork 0
mirror of https://git.youjo.love/youjo/youjo-be.git synced 2025-03-07 03:29:59 +01:00
youjo-be/lib/pleroma/bbs/authenticator.ex

17 lines
388 B
Elixir
Raw Normal View History

2019-03-31 18:01:16 +02:00
defmodule Pleroma.BBS.Authenticator do
use Sshd.PasswordAuthenticator
alias Comeonin.Pbkdf2
alias Pleroma.User
def authenticate(username, password) do
username = to_string(username)
password = to_string(password)
with %User{} = user <- User.get_by_nickname(username) do
Pbkdf2.checkpw(password, user.password_hash)
else
_e -> false
end
end
end