Minor change to Wi-Fi WPA3 password length restriction

- Change the maximum length limit to 128

Bug: 200305860
Test: manual test
make RunSettingsRoboTests ROBOTEST_FILTER=WifiConfigController2Test

Change-Id: Ia739dab35da75c73e28077ccc81979253def6128
This commit is contained in:
Weng Su
2021-09-20 22:38:29 +08:00
parent e9200b19ad
commit caa29d401b

View File

@@ -484,7 +484,7 @@ public class WifiConfigController2 implements TextWatcher,
} }
boolean isValidSaePassword(String password) { boolean isValidSaePassword(String password) {
if (password.length() >= 1 && password.length() <= 63) { if (password.length() >= 1 && password.length() <= 128) {
return true; return true;
} }
return false; return false;