From 03fbe704c0c913d6f3a18c98bc1a92d711a1db21 Mon Sep 17 00:00:00 2001 From: balaijbharadwaj <70126057+balaijbharadwaj@users.noreply.github.com> Date: Wed, 7 Dec 2022 16:09:19 +0530 Subject: [PATCH 1/2] Update encryption.py --- encryption.py | 1 - 1 file changed, 1 deletion(-) diff --git a/encryption.py b/encryption.py index 73cc0334..5d10fc17 100644 --- a/encryption.py +++ b/encryption.py @@ -1,4 +1,3 @@ -import bcrypt def get_hashed_password(plain_text_password): # Hash a password for the first time # (Using bcrypt, the salt is saved into the hash itself) From 42eb2453889b2cac90960c79805e164ae7e2e17d Mon Sep 17 00:00:00 2001 From: balaijbharadwaj <70126057+balaijbharadwaj@users.noreply.github.com> Date: Wed, 7 Dec 2022 16:17:33 +0530 Subject: [PATCH 2/2] Update encryption.py --- encryption.py | 1 + 1 file changed, 1 insertion(+) diff --git a/encryption.py b/encryption.py index 5d10fc17..73cc0334 100644 --- a/encryption.py +++ b/encryption.py @@ -1,3 +1,4 @@ +import bcrypt def get_hashed_password(plain_text_password): # Hash a password for the first time # (Using bcrypt, the salt is saved into the hash itself)