Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaAttribute.java1172 public final boolean doesServerSupportEapAkaPrime; field in EapSimAkaAttribute.AtBidding
1183 doesServerSupportEapAkaPrime = (serverFlag & SUPPORTS_EAP_AKA_PRIME_MASK) != 0; in AtBidding()
1187 public AtBidding(boolean doesServerSupportEapAkaPrime) in AtBidding() argument
1191 this.doesServerSupportEapAkaPrime = doesServerSupportEapAkaPrime; in AtBidding()
1198 int flagToWrite = doesServerSupportEapAkaPrime ? SUPPORTS_EAP_AKA_PRIME_MASK : 0; in encode()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtBiddingTest.java57 assertTrue(atBidding.doesServerSupportEapAkaPrime); in testDecodeServerSupportsAkaPrime()
69 assertFalse(atBidding.doesServerSupportEapAkaPrime); in testDecodeDoesNotSupportAkaPrime()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapAkaMethodStateMachine.java430 if (atBidding != null && atBidding.doesServerSupportEapAkaPrime) { in handleChallengeAuthentication()