comparison: eric6/Utilities/PasswordChecker.py
eric6/Utilities/PasswordChecker.py
- changeset 8207
- d359172d11be
- parent 7923
- 91e843545d9a
- child 8227
- 349308e84eeb
equal
deleted
inserted
replaced
8 """ |
8 """ |
9 |
9 |
10 import re |
10 import re |
11 |
11 |
12 |
12 |
13 class PasswordChecker(object): |
13 class PasswordChecker: |
14 """ |
14 """ |
15 Class implementing a checker for password strength. |
15 Class implementing a checker for password strength. |
16 """ |
16 """ |
17 Complexity_VeryWeak = 0 |
17 Complexity_VeryWeak = 0 |
18 Complexity_Weak = 1 |
18 Complexity_Weak = 1 |