forked from AkkomaGang/akkoma
formatting
This commit is contained in:
parent
f98f7ad1b9
commit
105f437ce9
1 changed files with 2 additions and 0 deletions
|
@ -16,8 +16,10 @@ def checkpw(password, password_hash) 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
|
||||
|
|
Loading…
Reference in a new issue