Home
last modified time | relevance | path

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

/packages/modules/IPsec/tests/cts/src/android/eap/cts/
DEapSessionConfigTest.java109 EapMsChapV2Config eapMsChapV2Config = result.getEapMsChapV2Config(); in testBuildWithAllEapMethods() local
110 assertNotNull(eapMsChapV2Config); in testBuildWithAllEapMethods()
111 assertEquals(EAP_TYPE_MSCHAP_V2, eapMsChapV2Config.getMethodType()); in testBuildWithAllEapMethods()
112 assertEquals(EAP_MSCHAPV2_USERNAME, eapMsChapV2Config.getUsername()); in testBuildWithAllEapMethods()
113 assertEquals(EAP_MSCHAPV2_PASSWORD, eapMsChapV2Config.getPassword()); in testBuildWithAllEapMethods()
114 assertEquals(eapMsChapV2Config, result.getEapMsChapV2onfig()); in testBuildWithAllEapMethods()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapMsChapV2MethodStateMachine.java197 EapMsChapV2Config eapMsChapV2Config, SecureRandom secureRandom) { in EapMsChapV2MethodStateMachine() argument
198 this(eapMsChapV2Config, secureRandom, new EapMsChapV2TypeDataDecoder()); in EapMsChapV2MethodStateMachine()
203 EapMsChapV2Config eapMsChapV2Config, in EapMsChapV2MethodStateMachine() argument
206 this.mEapMsChapV2Config = eapMsChapV2Config; in EapMsChapV2MethodStateMachine()
DEapStateMachine.java368 EapMsChapV2Config eapMsChapV2Config = (EapMsChapV2Config) eapMethodConfig; in buildEapMethodStateMachine() local
369 return new EapMsChapV2MethodStateMachine(eapMsChapV2Config, mSecureRandom); in buildEapMethodStateMachine()