From fbec7dff76449199778b911d98d4a04c48a293cc Mon Sep 17 00:00:00 2001 From: arabenjamin Date: Sun, 28 Jun 2020 16:33:04 -0700 Subject: [PATCH] Updated bad test password --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 54e1944..aafdfc5 100644 --- a/test.py +++ b/test.py @@ -18,7 +18,7 @@ def tearDownClass(cls): def setUp(self): self.secret = 'password@1234' - self.TARGET_HASH = sha1(self.secret).hexdigest().upper() + self.TARGET_HASH = sha1(self.secret+'salt').hexdigest().upper() self.file_path = "test_passwords_sha1.txt" """ get the target file size"""