Home
last modified time | relevance | path

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

/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionParamsTest.java176 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_PSK, localConfig.mAuthMethod); in verifyAuthPskConfig()
181 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_PSK, remoteConfig.mAuthMethod); in verifyAuthPskConfig()
485 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_EAP, localConfig.mAuthMethod); in testBuildWithEap()
490 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_PUB_KEY_SIGNATURE, remoteConfig.mAuthMethod); in testBuildWithEap()
518 IkeSessionParams.IKE_AUTH_METHOD_PUB_KEY_SIGNATURE, localAuthConfig.mAuthMethod); in testBuildWithDigitalSignatureAuth()
525 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_PUB_KEY_SIGNATURE, remoteConfig.mAuthMethod); in testBuildWithDigitalSignatureAuth()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionParams.java710 @IkeAuthMethod public final int mAuthMethod; field in IkeSessionParams.IkeAuthConfig
716 mAuthMethod = authMethod; in IkeAuthConfig()
761 result.putInt(AUTH_METHOD_KEY, mAuthMethod); in toPersistableBundle()
768 return Objects.hash(mAuthMethod, mAuthDirection); in hashCode()
779 return mAuthMethod == other.mAuthMethod && mAuthDirection == other.mAuthDirection; in equals()
1854 if (mLocalAuthConfig.mAuthMethod == IKE_AUTH_METHOD_PUB_KEY_SIGNATURE in build()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java3737 == mIkeSessionParams.getLocalAuthConfig().mAuthMethod); in enterState()
3837 switch (authConfig.mAuthMethod) { in buildIkeAuthReq()
3879 + authConfig.mAuthMethod)); in buildIkeAuthReq()
3983 switch (mIkeSessionParams.getRemoteAuthConfig().mAuthMethod) { in authenticate()