implement hashing password where needed
This commit is contained in:
parent
487f0f9597
commit
de4dc255ac
10
auth.py
10
auth.py
|
@ -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(input(f'Enter password for {username}: '))
|
||||
return pwdb
|
||||
|
||||
def read_pwdb(PWDB_PATH):
|
||||
|
|
Loading…
Reference in a new issue