diff --git a/auth.py b/auth.py index 3d8d072..e0b0a90 100644 --- a/auth.py +++ b/auth.py @@ -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()