Merge pull request 'hide user password on user creation' (#18) from giovannife/2024-heraklion-git:secure-add-user into main
Reviewed-on: #18 Thanks!
This commit is contained in:
commit
0113bf68b9
2
auth.py
2
auth.py
|
@ -14,7 +14,7 @@ def authenticate(username, hashed_password, pwdb):
|
||||||
return hashed_password == pwdb[username]
|
return hashed_password == pwdb[username]
|
||||||
|
|
||||||
def add_user(username, pwdb):
|
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
|
return pwdb
|
||||||
|
|
||||||
def read_pwdb(PWDB_PATH):
|
def read_pwdb(PWDB_PATH):
|
||||||
|
|
Loading…
Reference in a new issue