remove extra lines.

This commit is contained in:
ASPP Student 2024-08-26 15:34:21 +03:00
parent f1fc4c761d
commit 86f25aca46

View file

@ -25,12 +25,6 @@ def read_pwdb(PWDB_PATH):
pwdb = {}
return pwdb
# def get_salt(username):
# ''' will return a unique variable'''
# salt =
# return salt
def pwhash(password):
hashed_pass = hashlib.sha256(password.encode('utf-8')).hexdigest()