diff --git a/CH1/2-passwdCrack.py b/CH1/2-passwdCrack.py index d6ea525..75e81fd 100755 --- a/CH1/2-passwdCrack.py +++ b/CH1/2-passwdCrack.py @@ -2,7 +2,9 @@ # -*- coding: utf-8 -*- import crypt - +'''Function, testPass(), takes the encrypted password as a parameter and +returns either after finding the password or exhausting the words in the +dictionary''' def testPass(cryptPass): salt = cryptPass[0:2] dictFile = open('dictionary.txt', 'r')