Implement hashlib password hashing; print hashpass

This commit is contained in:
ASPP Student 2024-08-26 15:15:14 +03:00
parent b42ef06d91
commit 0cb4e35299

View file

@ -1,6 +1,7 @@
import json
import sys
from getpass import getpass
import hashlib
PWDB_PATH = 'pwdb.json'
@ -16,6 +17,11 @@ def add_user(username, pwdb):
pwdb[username] = input(f'Enter password for {username}: ')
return pwdb
def pwhash(password):
byte_pass = bytes(password, 'UTF-8')
hashed_password = hashlib.sha256()
hashed_password.update(byte_pass)
return print(hashed_password.digest())
def read_pwdb(PWDB_PATH):
try:
pwdb_file = open(PWDB_PATH, 'rt')
@ -45,4 +51,5 @@ if __name__ == "__main__":
print('Successfully authenticated!')
else:
print('Wrong password!')
pwhash(password)