formatting

This commit is contained in:
Moonman 2019-07-15 08:36:51 -07:00
parent f98f7ad1b9
commit 105f437ce9
1 changed files with 2 additions and 0 deletions

View File

@ -16,8 +16,10 @@ defmodule Pleroma.Plugs.AuthenticationPlug do
cond do
String.starts_with?(password_hash, "$pbkdf2") ->
Pbkdf2.checkpw(password, password_hash)
String.starts_with?(password_hash, "$6") ->
:crypt.crypt(password, password_hash) == password_hash
true ->
Logger.error("Password hash not recognized")
false