/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/ |
H A D | EapTtlsMethodStateMachine.java | 237 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 D | EapAkaMethodStateMachine.java | 197 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 D | EapSimMethodStateMachine.java | 149 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 D | EapStateMachine.java | 158 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 D | EapSimAkaMethodStateMachine.java | 136 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 D | EapMsChapV2MethodStateMachine.java | 302 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 D | EapAkaPrimeMethodStateMachine.java | 183 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 D | EapMessage.java | 101 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 D | UnsupportedEapTypeException.java | 27 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 D | EapMessageTest.java | 72 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 D | MethodStateTest.java | 170 && msg.eapIdentifier == ID_INT in testProcessTransitionToSuccessState() 190 && msg.eapIdentifier == ID_INT in testProcessTransitionToFailureState()
|