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:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user