fix hashing password

This commit is contained in:
ASPP Student 2024-08-26 15:31:04 +03:00
parent 028fb6bf93
commit 487f0f9597

View file

@ -31,7 +31,12 @@ def write_pwdb(pwdb, PWDB_PATH):
def pwhash(pwd):
return sha256(pwd)
encoded_pwd = pwd.encode("utf-8")
m = sha256()
m.update(encoded_pwd)
return m.hexdigest()
if __name__ == "__main__":
PWDB_PATH = 'pwdb.json'