Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DNetworkListStoreData.java76 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
78 serializeNetworkList(out, mConfigurations, encryptionUtil); in serializeData()
84 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
90 mConfigurations = parseNetworkList(in, outerTagDepth, version, encryptionUtil); in deserializeData()
135 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeNetworkList() argument
143 serializeNetwork(out, network, encryptionUtil); in serializeNetworkList()
157 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeNetwork() argument
163 WifiConfigurationXmlUtil.writeToXmlForConfigStore(out, config, encryptionUtil); in serializeNetwork()
181 WifiEnterpriseConfigXmlUtil.writeToXml(out, config.enterpriseConfig, encryptionUtil); in serializeNetwork()
201 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in parseNetworkList() argument
[all …]
DNetworkSuggestionStoreData.java116 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
118 serializeNetworkSuggestionsMap(out, mDataSource.toSerialize(), encryptionUtil); in serializeData()
124 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
131 parseNetworkSuggestionsMap(in, outerTagDepth, version, encryptionUtil)); in deserializeData()
162 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeNetworkSuggestionsMap() argument
183 serializeExtNetworkSuggestions(out, networkSuggestions, encryptionUtil); in serializeNetworkSuggestionsMap()
196 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeExtNetworkSuggestions() argument
199 serializeNetworkSuggestion(out, extNetworkSuggestion, encryptionUtil); in serializeExtNetworkSuggestions()
211 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeNetworkSuggestion() argument
220 out, suggestion.wifiConfiguration, encryptionUtil); in serializeNetworkSuggestion()
[all …]
DImsiPrivacyProtectionExemptionStoreData.java83 public void serializeData(XmlSerializer out, WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
91 WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
99 version, encryptionUtil)); in deserializeData()
106 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in parseCarrierImsiProtectionExemptionMap() argument
DWifiConfigStore.java314 WifiConfigStoreEncryptionUtil encryptionUtil = null; in createFile() local
316 encryptionUtil = new WifiConfigStoreEncryptionUtil(file.getName()); in createFile()
318 return new StoreFile(file, fileId, userHandle, encryptionUtil); in createFile()
712 @Version int version, @NonNull WifiConfigStoreEncryptionUtil encryptionUtil) in indicateNoDataForStoreDatas() argument
715 storeData.deserializeData(null, 0, version, encryptionUtil); in indicateNoDataForStoreDatas()
875 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) { in StoreFile() argument
880 mEncryptionUtil = encryptionUtil; in StoreFile()
973 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
989 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DRandomizedMacStoreData.java49 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
59 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DSsidSetStoreData.java82 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
93 @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
DSoftApStoreData.java109 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
149 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DWifiSettingsConfigStore.java324 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
334 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DXmlUtil.java394 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in writePreSharedKeyToXml() argument
397 if (encryptionUtil != null) { in writePreSharedKeyToXml()
399 encryptedData = encryptionUtil.encrypt(preSharedKey.getBytes()); in writePreSharedKeyToXml()
426 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in writeCommonElementsToXml() argument
430 writePreSharedKeyToXml(out, configuration.preSharedKey, encryptionUtil); in writeCommonElementsToXml()
484 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in writeToXmlForConfigStore() argument
486 writeCommonElementsToXml(out, configuration, encryptionUtil); in writeToXmlForConfigStore()
564 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in parseFromXml() argument
727 if (!shouldExpectEncryptedCredentials || encryptionUtil == null) { in parseFromXml()
733 byte[] preSharedKeyBytes = encryptionUtil.decrypt(encryptedData); in parseFromXml()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointConfigSharedStoreData.java81 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
89 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
DPasspointConfigUserStoreData.java111 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
119 @Nullable WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiConfigStoreTest.java1040 public void serializeData(XmlSerializer out, WifiConfigStoreEncryptionUtil encryptionUtil) in serializeData() argument
1047 WifiConfigStoreEncryptionUtil encryptionUtil) in deserializeData() argument