From 86f25aca4602579fbd23b62245ec109d7ecf0b93 Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Mon, 26 Aug 2024 15:34:21 +0300 Subject: [PATCH] remove extra lines. --- auth.py | 6 ------ 1 file changed, 6 deletions(-) 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()