formatting
This commit is contained in:
parent
f98f7ad1b9
commit
105f437ce9
|
@ -16,8 +16,10 @@ def checkpw(password, password_hash) do
|
||||||
cond do
|
cond do
|
||||||
String.starts_with?(password_hash, "$pbkdf2") ->
|
String.starts_with?(password_hash, "$pbkdf2") ->
|
||||||
Pbkdf2.checkpw(password, password_hash)
|
Pbkdf2.checkpw(password, password_hash)
|
||||||
|
|
||||||
String.starts_with?(password_hash, "$6") ->
|
String.starts_with?(password_hash, "$6") ->
|
||||||
:crypt.crypt(password, password_hash) == password_hash
|
:crypt.crypt(password, password_hash) == password_hash
|
||||||
|
|
||||||
true ->
|
true ->
|
||||||
Logger.error("Password hash not recognized")
|
Logger.error("Password hash not recognized")
|
||||||
false
|
false
|
||||||
|
|
Loading…
Reference in New Issue