gpt4 book ai didi

android - 使用预共享 key 连接到 WPA2 private

转载 作者:行者123 更新时间:2023-11-30 03:02:25 24 4
gpt4 key购买 nike

我在连接到仅使用 AES 时遇到问题。我可以使用 WPA2 (TKIP) 成功连接,但不能 (CCMP)。如果我在最后注释掉两条 TKIP 线,我将无法再连接。我想知道 CCMP 是否完全在 Android 中实现?

private WifiConfiguration getWifiConfiguration(ScanResult result, String password) {
WifiConfiguration config = new WifiConfiguration();

config.allowedAuthAlgorithms.clear();
config.allowedGroupCiphers.clear();
config.allowedKeyManagement.clear();
config.allowedPairwiseCiphers.clear();
config.allowedProtocols.clear();

config.SSID = "\"" + result.SSID + "\"";
config.BSSID = result.BSSID;
config.preSharedKey = "\"" + password + "\"";
config.status = WifiConfiguration.Status.ENABLED;
config.hiddenSSID = false;

config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK);
config.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN);
config.allowedProtocols.set(WifiConfiguration.Protocol.RSN);
config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP);
config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP);
config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP);
config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP);
return config;
}

最佳答案

好的,不能只支持 AES。 AES 需要同时支持 CCMP 和 TKIP。

关于android - 使用预共享 key 连接到 WPA2 private,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22340408/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com