Home
last modified time | relevance | path

Searched refs:PSK_MAX_LEN (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiApConfigStore.java62 static final int PSK_MAX_LEN = 63; field in WifiApConfigStore
383 if (preSharedKey.length() < PSK_MIN_LEN || preSharedKey.length() > PSK_MAX_LEN) { in validateApConfigPreSharedKey()
385 + " and no more than " + PSK_MAX_LEN); in validateApConfigPreSharedKey()
/frameworks/base/wifi/java/android/net/wifi/
DSoftApConfiguration.java66 static final int PSK_MAX_LEN = 63; field in SoftApConfiguration
720 if (passphrase.length() < PSK_MIN_LEN || passphrase.length() > PSK_MAX_LEN) { in setPassphrase()
723 + " and no more than " + PSK_MAX_LEN in setPassphrase()
/frameworks/base/wifi/tests/src/android/net/wifi/
DSoftApConfigurationTest.java224 .setPassphrase(generateRandomString(SoftApConfiguration.PSK_MAX_LEN + 1), in testInvalidLongPasswordLengthForWpa2()
244 .setPassphrase(generateRandomString(SoftApConfiguration.PSK_MAX_LEN + 1), in testInvalidLongPasswordLengthForWpa3SaeTransition()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiApConfigStoreTest.java625 int maxLen = WifiApConfigStore.PSK_MAX_LEN; in testWpa2PskNetworkConfigInValidateApWifiConfigurationCheck()