diff options
author | Andreas Abraham <aabraham@iaik.tugraz.at> | 2018-03-21 14:48:42 +0100 |
---|---|---|
committer | Andreas Abraham <aabraham@iaik.tugraz.at> | 2018-03-21 14:48:42 +0100 |
commit | 4d414d849aadab00a8912aa7e96ba86b3b21e101 (patch) | |
tree | 72c83a7bd6adfe0184eebc162581edd7b61a073b /pdf-over-gui | |
parent | 8398056900748ad8db9abc49d4144a1680e33e7e (diff) | |
download | pdf-over-4d414d849aadab00a8912aa7e96ba86b3b21e101.tar.gz pdf-over-4d414d849aadab00a8912aa7e96ba86b3b21e101.tar.bz2 pdf-over-4d414d849aadab00a8912aa7e96ba86b3b21e101.zip |
password length issue fixed
Diffstat (limited to 'pdf-over-gui')
-rw-r--r-- | pdf-over-gui/src/main/java/at/asit/pdfover/gui/bku/mobile/MobileBKUHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/bku/mobile/MobileBKUHelper.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/bku/mobile/MobileBKUHelper.java index 52444ad1..410ba3c1 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/bku/mobile/MobileBKUHelper.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/bku/mobile/MobileBKUHelper.java @@ -225,7 +225,7 @@ public class MobileBKUHelper { */ public static void validatePassword(String password) throws InvalidPasswordException { - if (password.length() < 6 || password.length() > 20) { + if (password.length() < 5 || password.length() > 200) { if (password.length() < 6) { throw new PasswordTooShortException(); } |