Merge "Minor change to Wi-Fi WPA3 password length restriction" into sc-qpr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
6263fd9471
@@ -484,7 +484,7 @@ public class WifiConfigController2 implements TextWatcher,
|
||||
}
|
||||
|
||||
boolean isValidSaePassword(String password) {
|
||||
if (password.length() >= 1 && password.length() <= 63) {
|
||||
if (password.length() >= 1 && password.length() <= 128) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user