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

15
auth.py
View file

@ -7,14 +7,14 @@ PWDB_PATH = 'pwdb.json'
def get_credentials():
username = input('Enter your username: ')
password = getpass('Enter your password: ')
return (username, password)
hashed_password = pwhash(getpass('Enter your password: '))
return (username, hashed_password)
def authenticate(username, password, pwdb):
return password == pwdb[username]
def authenticate(username, hashed_password, pwdb):
return hashed_password == pwdb[username]
def add_user(username, pwdb):
pwdb[username] = input(f'Enter password for {username}: ')
pwdb[username] = pwhash(getpass(f'Enter password for {username}: '))
return pwdb
def read_pwdb(PWDB_PATH):
@ -31,7 +31,10 @@ 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'