Compare commits
3 commits
de4dc255ac
...
33720c9b63
Author | SHA1 | Date | |
---|---|---|---|
|
33720c9b63 | ||
|
65d0aae9c9 | ||
|
b4ba12f5c8 |
15
auth.py
15
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(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'
|
||||
|
|
Loading…
Reference in a new issue