Home
last modified time | relevance | path

Searched refs:eapSessionConfig (Results 1 – 7 of 7) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
DMethodStateTest.java103 EapSessionConfig eapSessionConfig = new EapSessionConfig.Builder() in testProcessTransitionToEapAka() local
105 mEapStateMachine = new EapStateMachine(mContext, eapSessionConfig, new SecureRandom()); in testProcessTransitionToEapAka()
117 EapSessionConfig eapSessionConfig = in testProcessTransitionToEapAkaPrime() local
122 mEapStateMachine = new EapStateMachine(mContext, eapSessionConfig, new SecureRandom()); in testProcessTransitionToEapAkaPrime()
134 EapSessionConfig eapSessionConfig = in testProcessTransitionToEapMsChapV2() local
136 mEapStateMachine = new EapStateMachine(mContext, eapSessionConfig, new SecureRandom()); in testProcessTransitionToEapMsChapV2()
150 EapSessionConfig eapSessionConfig = in testProcessTransitionToEapTtls() local
154 mEapStateMachine = new EapStateMachine(mContext, eapSessionConfig, new SecureRandom()); in testProcessTransitionToEapTtls()
DEapTtlsStateTest.java111 EapSessionConfig eapSessionConfig = in setUp() local
115 mEapTtlsConfig = eapSessionConfig.getEapTtlsConfig(); in setUp()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/
DEapAuthenticator.java70 Looper looper, IEapCallback cb, Context context, EapSessionConfig eapSessionConfig) { in EapAuthenticator() argument
71 this(looper, cb, context, eapSessionConfig, DEFAULT_RANDOM_FACTORY); in EapAuthenticator()
88 EapSessionConfig eapSessionConfig, in EapAuthenticator() argument
95 eapSessionConfig, in EapAuthenticator()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeEapAuthenticatorFactory.java42 EapSessionConfig eapSessionConfig, in newEapAuthenticator() argument
44 return new EapAuthenticator(looper, cb, context, eapSessionConfig, randomnessFactory); in newEapAuthenticator()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapStateMachine.java83 @NonNull EapSessionConfig eapSessionConfig, in EapStateMachine() argument
86 this.mEapSessionConfig = eapSessionConfig; in EapStateMachine()
92 + LOG.pii(eapSessionConfig.getEapIdentity()) in EapStateMachine()
93 + " and configs=" + eapSessionConfig.getEapConfigs().keySet()); in EapStateMachine()
/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionParamsTest.java714 EapSessionConfig eapSessionConfig = in testExceptionOnEapOnlyOptionWithEapOnlyUnsafeMethod() local
723 .setAuthEap(null, eapSessionConfig) in testExceptionOnEapOnlyOptionWithEapOnlyUnsafeMethod()
733 EapSessionConfig eapSessionConfig = new EapSessionConfig.Builder() in testBuildWithEapOnlyOption() local
739 .setAuthEap(null, eapSessionConfig) in testBuildWithEapOnlyOption()
815 EapSessionConfig eapSessionConfig = in testPersistableBundleEncodeDecodeAuthEap() local
819 verifyPersistableBundleEncodeDecodeIsLossless(new IkeAuthEapConfig(eapSessionConfig)); in testPersistableBundleEncodeDecodeAuthEap()
/packages/modules/IPsec/src/java/android/net/eap/
DEapSessionConfig.java875 EapSessionConfig eapSessionConfig = in fromPersistableBundle() local
878 return new EapTtlsConfig(caCert, eapSessionConfig); in fromPersistableBundle()