diff options
author | Rebecca Silberstein <silberst@google.com> | 2017-04-15 21:48:11 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-04-15 21:48:11 +0000 |
commit | 021255a7c135ae7ee1680e9c72301dfc55151fd7 (patch) | |
tree | 7c12404d8a26186564182ace60fc69b89b49057e /service | |
parent | 0418b114b37e5d64899c09d25e79d1affd305573 (diff) | |
parent | b487bcbf34468767097220ad63dcd387766fe2ac (diff) |
WifiApConfigStore: create temp sharing AP config am: 1e5c1abdeb am: 7fa3919c94
am: b487bcbf34
Change-Id: I08cc4612344d7539ad47ac755cec5b8bec512858
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/WifiApConfigStore.java | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/service/java/com/android/server/wifi/WifiApConfigStore.java b/service/java/com/android/server/wifi/WifiApConfigStore.java index 4233f5834..850c5aebe 100644 --- a/service/java/com/android/server/wifi/WifiApConfigStore.java +++ b/service/java/com/android/server/wifi/WifiApConfigStore.java @@ -203,8 +203,24 @@ public class WifiApConfigStore { return config; } - private int getRandomIntForDefaultSsid() { + private static int getRandomIntForDefaultSsid() { Random random = new Random(); return random.nextInt((RAND_SSID_INT_MAX - RAND_SSID_INT_MIN) + 1) + RAND_SSID_INT_MIN; } + + /** + * Generate a temporary WPA2 based configuration for use by the local only hotspot. + * This config is not persisted and will not be stored by the WifiApConfigStore. + */ + public static WifiConfiguration generateLocalOnlyHotspotConfig(Context context) { + WifiConfiguration config = new WifiConfiguration(); + config.SSID = context.getResources().getString( + R.string.wifi_localhotspot_configure_ssid_default) + "_" + + getRandomIntForDefaultSsid(); + config.allowedKeyManagement.set(KeyMgmt.WPA2_PSK); + String randomUUID = UUID.randomUUID().toString(); + // first 12 chars from xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx + config.preSharedKey = randomUUID.substring(0, 8) + randomUUID.substring(9, 13); + return config; + } } |