Commit 8d6b339d authored by impfundev's avatar impfundev

fix: remove printed log

parent 15af9dc3
...@@ -19,9 +19,6 @@ class Hasher: ...@@ -19,9 +19,6 @@ class Hasher:
hashed_password = encoded[2:].replace("'", "").encode("utf-8") hashed_password = encoded[2:].replace("'", "").encode("utf-8")
password_encode = password.encode("utf-8") password_encode = password.encode("utf-8")
print(hashed_password)
print(password_encode)
is_verified = bcrypt.checkpw( is_verified = bcrypt.checkpw(
password=password_encode, hashed_password=hashed_password password=password_encode, hashed_password=hashed_password
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment