diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-08-14 10:39:45 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-08-14 10:39:45 -0300 |
commit | d1fba2fc4f032336b5c48bb16e6c4a83c24a4d50 (patch) | |
tree | 9c3de526036f5c6e17866e8d05119f3709aee225 /src/leap | |
parent | 4af51a2a35978ad013a6267c9e75a1e33d4e0ee3 (diff) | |
parent | e35b7f006b6cb076ff6b982a2f173ab5bc3a41d3 (diff) |
Merge remote-tracking branch 'refs/remotes/ivan/bug/use-same-user-and-pass-restrictions-as-in-the-webapp' into develop
Diffstat (limited to 'src/leap')
-rw-r--r-- | src/leap/bitmask/util/credentials.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/bitmask/util/credentials.py b/src/leap/bitmask/util/credentials.py index 07ded17b..757ce10c 100644 --- a/src/leap/bitmask/util/credentials.py +++ b/src/leap/bitmask/util/credentials.py @@ -21,7 +21,7 @@ Credentials utilities from PySide import QtCore, QtGui WEAK_PASSWORDS = ("123456", "qweasd", "qwerty", "password") -USERNAME_REGEX = r"^[A-Za-z][A-Za-z\d_\-\.]+[A-Za-z\d]$" +USERNAME_REGEX = r"^[a-z][a-z\d_\-\.]+[a-z\d]$" USERNAME_VALIDATOR = QtGui.QRegExpValidator(QtCore.QRegExp(USERNAME_REGEX)) @@ -69,7 +69,7 @@ def password_checks(username, password, password2): if message is None and not password: message = _tr("You can't use an empty password") - if message is None and len(password) < 6: + if message is None and len(password) < 8: message = _tr("Password too short") if message is None and password in WEAK_PASSWORDS: |