Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachine.java140 EapSimAkaTypeData eapSimAkaTypeData = getEapSimAkaTypeData(clientErrorCode); in buildClientErrorResponse() local
141 byte[] encodedTypeData = eapSimAkaTypeData.encode(); in buildClientErrorResponse()
280 EapSimAkaTypeData eapSimAkaTypeData = getEapSimAkaTypeData(eapSubtype, attributes); in buildResponseMessageWithMac() local
282 byte[] mac = getMac(EAP_CODE_RESPONSE, identifier, eapSimAkaTypeData, extraData); in buildResponseMessageWithMac()
284 eapSimAkaTypeData.attributeMap.put(EAP_AT_MAC, new AtMac(mac)); in buildResponseMessageWithMac()
285 EapData eapData = new EapData(getEapMethod(), eapSimAkaTypeData.encode()); in buildResponseMessageWithMac()
299 EapSimAkaTypeData eapSimAkaTypeData) { in handleEapSimAkaNotification() argument
309 (AtNotification) eapSimAkaTypeData.attributeMap.get(EAP_AT_NOTIFICATION); in handleEapSimAkaNotification()
328 if (eapSimAkaTypeData.attributeMap.containsKey(EAP_AT_MAC)) { in handleEapSimAkaNotification()
334 getEapMethod(), eapSimAkaTypeData.eapSubtype, identifier, Arrays.asList()); in handleEapSimAkaNotification()
[all …]
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaTypeData.java141 T eapSimAkaTypeData = getInstance(eapSubType, attributeMap); in decode() local
143 logDecodedEapSimAkaTypeData(eapSimAkaTypeData); in decode()
145 return new DecodeResult<>(eapSimAkaTypeData); in decode()
162 private void logDecodedEapSimAkaTypeData(EapSimAkaTypeData eapSimAkaTypeData) { in logDecodedEapSimAkaTypeData() argument
168 msg.append(mEapSubtypeStrings.getOrDefault(eapSimAkaTypeData.eapSubtype, "Unknown")); in logDecodedEapSimAkaTypeData()
170 for (int attributeType : eapSimAkaTypeData.attributeMap.keySet()) { in logDecodedEapSimAkaTypeData()