Home
last modified time | relevance | path

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

/packages/modules/Wifi/framework/java/android/net/wifi/
DWifiConfiguration.java1082 private byte[] mEncryptedPreSharedKeyIv; field in WifiConfiguration
3383 mEncryptedPreSharedKeyIv = new byte[0]; in WifiConfiguration()
4166 mEncryptedPreSharedKeyIv = source.mEncryptedPreSharedKeyIv != null in WifiConfiguration()
4167 ? source.mEncryptedPreSharedKeyIv.clone() : new byte[0]; in WifiConfiguration()
4267 dest.writeByteArray(mEncryptedPreSharedKeyIv); in writeToParcel()
4390 config.mEncryptedPreSharedKeyIv = in.createByteArray();
4391 if (config.mEncryptedPreSharedKeyIv == null) {
4392 config.mEncryptedPreSharedKeyIv = new byte[0];
4486 if (mEncryptedPreSharedKey == null || mEncryptedPreSharedKeyIv == null) return false; in hasEncryptedPreSharedKey()
4487 return !(mEncryptedPreSharedKey.length == 0 && mEncryptedPreSharedKeyIv.length == 0); in hasEncryptedPreSharedKey()
[all …]