--- a/src/eric7/Utilities/PasswordChecker.py Wed Jan 03 17:36:30 2024 +0100 +++ b/src/eric7/Utilities/PasswordChecker.py Wed Jan 03 18:09:15 2024 +0100 @@ -15,12 +15,14 @@ Class implementing a checker for password strength. """ + # TODO: change this to an enum Complexity_VeryWeak = 0 Complexity_Weak = 1 Complexity_Good = 2 Complexity_Strong = 3 Complexity_VeryStrong = 4 + # TODO: change this to an enum Status_Failed = 0 Status_Passed = 1 Status_Exceeded = 2