Home
last modified time | relevance | path

Searched refs:encryptionUtil (Results 1 – 12 of 12) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DNetworkSuggestionStoreData.java106 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
108 serializeNetworkSuggestionsMap(out, mDataSource.toSerialize(), encryptionUtil); in serializeData()
114 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
121 parseNetworkSuggestionsMap(in, outerTagDepth, version, encryptionUtil)); in deserializeData()
152 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeNetworkSuggestionsMap() argument
167 serializeExtNetworkSuggestions(out, networkSuggestions, encryptionUtil); in serializeNetworkSuggestionsMap()
180 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeExtNetworkSuggestions() argument
183 serializeNetworkSuggestion(out, extNetworkSuggestion.wns, encryptionUtil); in serializeExtNetworkSuggestions()
195 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeNetworkSuggestion() argument
202 out, suggestion.wifiConfiguration, encryptionUtil); in serializeNetworkSuggestion()
[all …]
DNetworkListStoreData.java74 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
76 serializeNetworkList(out, mConfigurations, encryptionUtil); in serializeData()
82 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
88 mConfigurations = parseNetworkList(in, outerTagDepth, version, encryptionUtil); in deserializeData()
133 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeNetworkList() argument
139 serializeNetwork(out, network, encryptionUtil); in serializeNetworkList()
153 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeNetwork() argument
159 WifiConfigurationXmlUtil.writeToXmlForConfigStore(out, config, encryptionUtil); in serializeNetwork()
177 WifiEnterpriseConfigXmlUtil.writeToXml(out, config.enterpriseConfig, encryptionUtil); in serializeNetwork()
197 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in parseNetworkList() argument
[all …]
DWifiConfigStore.java304 WifiConfigStoreEncryptionUtil encryptionUtil = null; in createFile() local
306 encryptionUtil = new WifiConfigStoreEncryptionUtil(file.getName()); in createFile()
308 return new StoreFile(file, fileId, encryptionUtil); in createFile()
582 @Version int version, @NonNull WifiConfigStoreEncryptionUtil encryptionUtil) in indicateNoDataForStoreDatas() argument
585 storeData.deserializeData(null, 0, version, encryptionUtil); in indicateNoDataForStoreDatas()
737 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) { in StoreFile() argument
741 mEncryptionUtil = encryptionUtil; in StoreFile()
835 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
851 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DRandomizedMacStoreData.java47 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
57 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DSsidSetStoreData.java80 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
91 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DDeletedEphemeralSsidsStoreData.java51 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
61 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DWakeupConfigStoreData.java100 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
149 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DNetworkRequestStoreData.java93 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
101 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DXmlUtil.java390 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in writePreSharedKeyToXml() argument
393 if (encryptionUtil != null) { in writePreSharedKeyToXml()
395 encryptedData = encryptionUtil.encrypt(preSharedKey.getBytes()); in writePreSharedKeyToXml()
422 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in writeCommonElementsToXml() argument
427 writePreSharedKeyToXml(out, configuration.preSharedKey, encryptionUtil); in writeCommonElementsToXml()
480 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in writeToXmlForConfigStore() argument
482 writeCommonElementsToXml(out, configuration, encryptionUtil); in writeToXmlForConfigStore()
558 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in parseFromXml() argument
718 if (!shouldExpectEncryptedCredentials || encryptionUtil == null) { in parseFromXml()
724 byte[] preSharedKeyBytes = encryptionUtil.decrypt(encryptedData); in parseFromXml()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointConfigSharedStoreData.java79 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
87 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DPasspointConfigUserStoreData.java109 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
117 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiConfigStoreTest.java927 public void serializeData(XmlSerializer out, WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
934 WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument