Compare commits

..

3 commits

Author SHA1 Message Date
ASPP Student 33720c9b63 make use of pwdhash 2024-08-26 15:06:05 +03:00
ASPP Student 65d0aae9c9 fix password hashing
# doc.python.org
2024-08-26 15:05:02 +03:00
ASPP Student b4ba12f5c8 use getpass for add_user 2024-08-26 14:55:02 +03:00

View file

@ -14,7 +14,7 @@ def authenticate(username, hashed_password, pwdb):
return hashed_password == pwdb[username]
def add_user(username, pwdb):
pwdb[username] = pwhash(input(f'Enter password for {username}: '))
pwdb[username] = pwhash(getpass(f'Enter password for {username}: '))
return pwdb
def read_pwdb(PWDB_PATH):
@ -36,8 +36,6 @@ def pwhash(pwd):
m.update(encoded_pwd)
return m.hexdigest()
if __name__ == "__main__":
PWDB_PATH = 'pwdb.json'
pwdb = read_pwdb(PWDB_PATH)