commit | caa29d401b1b93d825a683952006f2685ed44769 | [log] [tgz] |
---|---|---|
author | Weng Su <wengsu@google.com> | Mon Sep 20 22:38:29 2021 +0800 |
committer | Weng Su <wengsu@google.com> | Mon Sep 20 22:38:29 2021 +0800 |
tree | be22a6e2dc8eb89ae634c1c819ad48531289f592 | |
parent | e9200b19ad1dc1fbeae183dc795ba78289adbcdc [diff] |
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
diff --git a/src/com/android/settings/wifi/WifiConfigController2.java b/src/com/android/settings/wifi/WifiConfigController2.java index e8f2384..011c970 100644 --- a/src/com/android/settings/wifi/WifiConfigController2.java +++ b/src/com/android/settings/wifi/WifiConfigController2.java
@@ -484,7 +484,7 @@ } boolean isValidSaePassword(String password) { - if (password.length() >= 1 && password.length() <= 63) { + if (password.length() >= 1 && password.length() <= 128) { return true; } return false;