Page MenuHomePhorge

authenticator.ex
No OneTemporary

Size
547 B
Referenced Files
None
Subscribers
None

authenticator.ex

# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
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

File Metadata

Mime Type
text/x-ruby
Expires
Sun, Dec 28, 1:41 AM (14 h, 29 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
799219
Default Alt Text
authenticator.ex (547 B)

Event Timeline