Home
last modified time | relevance | path

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

/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
H A DEapTtlsMethodStateMachine.java237 message.eapIdentifier, in process()
244 return startHandshake(message.eapIdentifier); in process()
297 message.eapIdentifier, in process()
312 private EapResult startHandshake(int eapIdentifier) { in startHandshake() argument
655 eapIdentifier, in transitionToErroredAndAwaitingClosureState()
682 eapIdentifier, in getNextOutboundFragment()
692 eapIdentifier, in getNextOutboundFragment()
701 eapIdentifier, in getNextOutboundFragment()
736 eapIdentifier, in handleInboundFragmentation()
744 eapIdentifier, in handleInboundFragmentation()
[all …]
H A DEapAkaMethodStateMachine.java197 message.eapIdentifier, in process()
201 message.eapIdentifier, in process()
236 message.eapIdentifier, in process()
240 message.eapIdentifier, in process()
248 message.eapIdentifier, in process()
276 message.eapIdentifier, in process()
358 message.eapIdentifier, in process()
362 message.eapIdentifier, in process()
398 message.eapIdentifier, in handleChallengeAuthentication()
443 message.eapIdentifier, in handleChallengeAuthentication()
[all …]
H A DEapSimMethodStateMachine.java149 message.eapIdentifier, in process()
162 message.eapIdentifier, in process()
207 message.eapIdentifier, in process()
239 message.eapIdentifier, in process()
253 message.eapIdentifier, in process()
275 message.eapIdentifier, in process()
389 message.eapIdentifier, in process()
414 message.eapIdentifier, in process()
425 message.eapIdentifier, in process()
439 message.eapIdentifier, in process()
[all …]
H A DEapStateMachine.java158 ex.eapIdentifier, mEapSessionConfig.getEapConfigs().keySet())); in decode()
237 return getIdentityResponse(message.eapIdentifier); in process()
246 EapResult getIdentityResponse(int eapIdentifier) { in getIdentityResponse() argument
254 new EapMessage(EAP_CODE_RESPONSE, eapIdentifier, identityData)); in getIdentityResponse()
258 + LOG.pii(eapIdentifier)); in getIdentityResponse()
300 eapMessage.eapIdentifier, mEapSessionConfig.getEapConfigs().keySet()); in process()
379 return EapMessage.getNotificationResponse(message.eapIdentifier); in handleNotification()
H A DEapSimAkaMethodStateMachine.java136 int eapIdentifier, in buildClientErrorResponse() argument
145 EapMessage response = new EapMessage(EAP_CODE_RESPONSE, eapIdentifier, eapData); in buildClientErrorResponse()
219 byte[] mac = getMac(message.eapCode, message.eapIdentifier, typeData, extraData); in isValidMac()
237 byte[] getMac(int eapCode, int eapIdentifier, EapSimAkaTypeData typeData, byte[] extraData) in getMac() argument
250 EapMessage messageForMac = new EapMessage(eapCode, eapIdentifier, eapData); in getMac()
H A DEapMsChapV2MethodStateMachine.java302 return buildEapMessageResponse(mTAG, message.eapIdentifier, challengeResponse); in process()
387 mTAG, message.eapIdentifier, getEapMsChapV2SuccessResponse()); in process()
410 mTAG, message.eapIdentifier, getEapMsChapV2FailureResponse()); in process()
487 String tag, int eapIdentifier, EapMsChapV2TypeData typeData) { in buildEapMessageResponse() argument
490 EapMessage eapMessage = new EapMessage(EAP_CODE_RESPONSE, eapIdentifier, eapData); in buildEapMessageResponse()
H A DEapAkaPrimeMethodStateMachine.java183 return buildAuthenticationRejectMessage(message.eapIdentifier); in handleChallengeAuthentication()
253 RandChallengeResult result, int eapIdentifier, EapAkaTypeData eapAkaTypeData) { in generateAndPersistEapAkaKeys() argument
296 eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in generateAndPersistEapAkaKeys()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/
H A DEapMessage.java101 public final int eapIdentifier; field in EapMessage
108 this.eapIdentifier = eapIdentifier; in EapMessage()
125 int eapIdentifier; in decode() local
130 eapIdentifier = Byte.toUnsignedInt(buffer.get()); in decode()
137 throw new UnsupportedEapTypeException(eapIdentifier, in decode()
165 return new EapMessage(eapCode, eapIdentifier, eapData); in decode()
176 byteBuffer.put((byte) eapIdentifier); in encode()
194 public static EapResult getNotificationResponse(int eapIdentifier) { in getNotificationResponse() argument
201 + eapIdentifier); in getNotificationResponse()
216 int eapIdentifier, in getNakResponse() argument
[all …]
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/exceptions/
H A DUnsupportedEapTypeException.java27 public final int eapIdentifier; field in UnsupportedEapTypeException
36 public UnsupportedEapTypeException(int eapIdentifier, String message) { in UnsupportedEapTypeException() argument
38 this.eapIdentifier = eapIdentifier; in UnsupportedEapTypeException()
49 public UnsupportedEapTypeException(int eapIdentifier, String message, Throwable cause) { in UnsupportedEapTypeException() argument
51 this.eapIdentifier = eapIdentifier; in UnsupportedEapTypeException()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/
H A DEapMessageTest.java72 assertEquals(ID_INT, result.eapIdentifier); in testDecode()
80 assertEquals(ID_INT, result.eapIdentifier); in testDecode()
136 assertEquals(ID_INT, expected.eapIdentifier); in testDecodeUnsupportedEapType()
158 assertEquals(eapMessage.eapIdentifier, result.eapIdentifier); in testEncodeDecode()
193 assertEquals(ID_INT, result.eapIdentifier); in testDecodewithExtraBytes()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
H A DMethodStateTest.java170 && msg.eapIdentifier == ID_INT in testProcessTransitionToSuccessState()
190 && msg.eapIdentifier == ID_INT in testProcessTransitionToFailureState()