Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapAkaMethodStateMachine.java187 EapAkaTypeData eapAkaTypeData = decodeResult.eapTypeData; in process() local
188 switch (eapAkaTypeData.eapSubtype) { in process()
198 eapAkaTypeData); in process()
226 EapAkaTypeData eapAkaTypeData = decodeResult.eapTypeData; in process() local
227 switch (eapAkaTypeData.eapSubtype) { in process()
237 eapAkaTypeData); in process()
245 if (!isValidIdentityAttributes(eapAkaTypeData)) { in process()
246 LOG.e(mTAG, "Invalid attributes: " + eapAkaTypeData.attributeMap.keySet()); in process()
280 private boolean isValidIdentityAttributes(EapAkaTypeData eapAkaTypeData) { in isValidIdentityAttributes() argument
281 Set<Integer> attrs = eapAkaTypeData.attributeMap.keySet(); in isValidIdentityAttributes()
[all …]
DEapAkaPrimeMethodStateMachine.java179 EapMessage message, EapAkaTypeData eapAkaTypeData) { in handleChallengeAuthentication() argument
180 EapAkaPrimeTypeData eapAkaPrimeTypeData = (EapAkaPrimeTypeData) eapAkaTypeData; in handleChallengeAuthentication()
253 RandChallengeResult result, int eapIdentifier, EapAkaTypeData eapAkaTypeData) { in generateAndPersistEapAkaKeys() argument
256 (AtKdfInput) eapAkaTypeData.attributeMap.get(EAP_AT_KDF_INPUT); in generateAndPersistEapAkaKeys()
257 AtAutn atAutn = (AtAutn) eapAkaTypeData.attributeMap.get(EAP_AT_AUTN); in generateAndPersistEapAkaKeys()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/
DEapAkaTypeDataTest.java91 EapAkaTypeData eapAkaTypeData = result.eapTypeData; in testDecode() local
92 assertEquals(EAP_AKA_CHALLENGE, eapAkaTypeData.eapSubtype); in testDecode()
96 eapAkaTypeData.attributeMap.entrySet().iterator(); in testDecode()
121 EapAkaTypeData eapAkaTypeData = result.eapTypeData; in testDecodeWithOptionalAttributes() local
122 assertEquals(EAP_AKA_CHALLENGE, eapAkaTypeData.eapSubtype); in testDecodeWithOptionalAttributes()
126 eapAkaTypeData.attributeMap.entrySet().iterator(); in testDecodeWithOptionalAttributes()
161 EapAkaTypeData eapAkaTypeData = new EapAkaTypeData(EAP_AKA_IDENTITY, attributes); in testEncode() local
163 byte[] result = eapAkaTypeData.encode(); in testEncode()